Skip to content

Commit a082694

Browse files
committed
chore(users): delete old worker code
1 parent e372d28 commit a082694

File tree

121 files changed

+58
-2747
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+58
-2747
lines changed

Cargo.lock

Lines changed: 0 additions & 185 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 37 deletions
Large diffs are not rendered by default.

packages/api/actor/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ token-revoke.workspace = true
5555
upload-complete.workspace = true
5656
upload-get.workspace = true
5757
user.workspace = true
58-
user-identity-get.workspace = true
5958

6059
[dev-dependencies]
6160
rivet-connection.workspace = true

packages/api/actor/src/auth.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ impl Auth {
159159
let (user_res, game_res, team_list_res) = tokio::try_join!(
160160
chirp_workflow::compat::op(
161161
&ctx,
162-
::user::ops::get::Input {
162+
user::ops::get::Input {
163163
user_ids: vec![user_ent.user_id],
164164
},
165165
),

packages/api/auth/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,4 @@ rivet-auth.workspace = true
4646
rivet-connection.workspace = true
4747

4848
debug-email-res.workspace = true
49-
user-identity-get.workspace = true
5049

packages/api/auth/src/auth.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ impl Auth {
5353

5454
let user_res = chirp_workflow::compat::op(
5555
&ctx,
56-
::user::ops::get::Input {
56+
user::ops::get::Input {
5757
user_ids: vec![user_ent.user_id],
5858
},
5959
)

packages/api/cloud/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,4 +119,3 @@ rivet-connection.workspace = true
119119
faker-region.workspace = true
120120
faker-team.workspace = true
121121
token-create.workspace = true
122-
user-identity-create.workspace = true

packages/api/cloud/src/assert.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ pub async fn user_registered(ctx: &OperationContext<()>, user_id: Uuid) -> Globa
99
// If the user has at least one identity they are considered registered
1010
let identity = chirp_workflow::compat::op(
1111
&ctx,
12-
::user::ops::identity::get::Input {
12+
user::ops::identity::get::Input {
1313
user_ids: vec![user_id]
1414
},
1515
)

packages/api/cloud/src/auth.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ impl Auth {
6262

6363
let user_res = chirp_workflow::compat::op(
6464
&ctx,
65-
::user::ops::get::Input {
65+
user::ops::get::Input {
6666
user_ids: vec![user_ent.user_id],
6767
},
6868
)
@@ -279,7 +279,7 @@ impl Auth {
279279
// Fetch teams associated with user
280280
let teams_res = chirp_workflow::compat::op(
281281
&ctx,
282-
::user::ops::team_list::Input {
282+
user::ops::team_list::Input {
283283
user_ids: vec![user_ent.user_id.into()],
284284
},
285285
)

packages/api/games/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ token-create.workspace = true
4747
upload-complete.workspace = true
4848
upload-get.workspace = true
4949
user.workspace = true
50-
user-identity-get.workspace = true
5150
rivet-config.workspace = true
5251
rivet-env.workspace = true
5352

0 commit comments

Comments
 (0)