summaryrefslogtreecommitdiff
path: root/src/api/clients.rs
diff options
context:
space:
mode:
authormrw1593 <botahamec@outlook.com>2023-05-29 16:15:33 -0400
committermrw1593 <botahamec@outlook.com>2023-05-29 16:15:33 -0400
commit8ee2802e8e1b3c443485dce002115389f2ba8f75 (patch)
treef8182792c54af37b8058968726fffc18fd477581 /src/api/clients.rs
parent747b7e6d399dc70c15262348ec763037c77f2013 (diff)
Stub out a token endpoint
Diffstat (limited to 'src/api/clients.rs')
-rw-r--r--src/api/clients.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/clients.rs b/src/api/clients.rs
index 7e8ca35..44504eb 100644
--- a/src/api/clients.rs
+++ b/src/api/clients.rs
@@ -95,7 +95,7 @@ async fn get_client_redirect_uris(
Ok(HttpResponse::Ok().json(redirect_uris))
}
-#[derive(Debug, Clone, Deserialize)]
+#[derive(Clone, Deserialize)]
struct ClientRequest {
alias: Box<str>,
ty: ClientType,