From f58bc0227ecf9411c74150507faf99300ecd7bea Mon Sep 17 00:00:00 2001 From: Mutsuha Asada Date: Tue, 31 Dec 2024 17:57:07 +0900 Subject: [PATCH] add: admin field to Author --- backend/src/author.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/src/author.rs b/backend/src/author.rs index 8583660..d35c65a 100644 --- a/backend/src/author.rs +++ b/backend/src/author.rs @@ -9,4 +9,5 @@ pub struct Author { pub website: Option, pub github_id: Option, pub x_id: Option, + pub admin: Option, }