summaryrefslogtreecommitdiffstats
path: root/src/graphql/types.rs
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-08-21 10:38:20 +0000
committerSanto Cariotti <santo@dcariotti.me>2024-08-21 10:38:20 +0000
commit24388ba81515c57e812994fdb9147e6de7f3a5b6 (patch)
treeb14a9ba122b419f1c8ebbff9327ad3c7005fd7fa /src/graphql/types.rs
parent91bfbd1abeb37ced029afba966a7134d92838baa (diff)
Reformat types mod
Diffstat (limited to 'src/graphql/types.rs')
-rw-r--r--src/graphql/types.rs29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/graphql/types.rs b/src/graphql/types.rs
deleted file mode 100644
index 79241df..0000000
--- a/src/graphql/types.rs
+++ /dev/null
@@ -1,29 +0,0 @@
-use async_graphql::Object;
-use serde::{Deserialize, Serialize};
-
-#[derive(Clone, Debug, Serialize, Deserialize)]
-pub struct User {
- pub id: i32,
- pub email: String,
- pub password: String,
- pub is_admin: bool,
-}
-
-#[Object]
-impl User {
- async fn id(&self) -> i32 {
- self.id
- }
-
- async fn email(&self) -> String {
- self.email.clone()
- }
-
- async fn password(&self) -> String {
- String::from("******")
- }
-
- async fn is_admin(&self) -> bool {
- self.is_admin
- }
-}