server: flatten remaining files

This commit is contained in:
Valentin Tolmer
2025-04-05 01:24:38 -05:00
committed by nitnelave
parent d38a2cd08b
commit 3556e41612
18 changed files with 47 additions and 36 deletions
+5 -5
View File
@@ -88,7 +88,7 @@ impl User {
query_path = "queries/create_user.graphql",
response_derives = "Debug",
variables_derives = "Debug,Clone",
custom_scalars_module = "crate::infra::graphql"
custom_scalars_module = "crate::graphql"
)]
struct CreateUser;
@@ -100,7 +100,7 @@ pub type CreateUserInput = create_user::CreateUserInput;
query_path = "queries/create_group.graphql",
response_derives = "Debug",
variables_derives = "Debug,Clone",
custom_scalars_module = "crate::infra::graphql"
custom_scalars_module = "crate::graphql"
)]
struct CreateGroup;
@@ -109,7 +109,7 @@ struct CreateGroup;
schema_path = "../schema.graphql",
query_path = "queries/list_users.graphql",
response_derives = "Debug",
custom_scalars_module = "crate::infra::graphql"
custom_scalars_module = "crate::graphql"
)]
struct ListUsers;
@@ -118,7 +118,7 @@ struct ListUsers;
schema_path = "../schema.graphql",
query_path = "queries/list_groups.graphql",
response_derives = "Debug",
custom_scalars_module = "crate::infra::graphql"
custom_scalars_module = "crate::graphql"
)]
struct ListGroups;
@@ -364,7 +364,7 @@ pub fn get_lldap_groups(graphql_client: &GraphQLClient) -> Result<Vec<LldapGroup
query_path = "queries/add_user_to_group.graphql",
response_derives = "Debug",
variables_derives = "Debug,Clone",
custom_scalars_module = "crate::infra::graphql"
custom_scalars_module = "crate::graphql"
)]
struct AddUserToGroup;