Change mutation to quickly test if a user is connected or not

This commit is contained in:
Lucien Cartier-Tilet 2023-01-15 22:50:48 +01:00
parent 05ca82c4e1
commit e522f358e5
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
1 changed files with 5 additions and 21 deletions

View File

@ -5,28 +5,12 @@ pub struct Mutation;
#[juniper::graphql_object(Context = Context)]
impl Mutation {
fn api_version(
session_id: Option<String>,
user_id: Option<String>,
context: &Context,
) -> String {
"0.1".into()
// if session_id.is_some() && user_id.is_some() {
// match context
// .appwrite
// .check_session(session_id.unwrap(), user_id.unwrap())
// {
// Ok(true) => "0.1 (authentified)".into(),
// Ok(false) => "0.1 (not authentified)".into(),
// Err(e) => {
// info!(
// "Error while checking if the user is connected: {:?}",
// e
// );
// "0.1 (auth failed)"
// }
// }
// } else {
// "0.1 (not authentified)"
// }
if context.user_auth {
"0.1 (authentified)"
} else {
"0.1 (not authentified)"
}.into()
}
}