Started some auth stuff

This commit is contained in:
Jef Roosens 2021-08-20 16:52:58 +02:00
parent eefaf7acaa
commit 5e86133651
Signed by: Jef Roosens
GPG key ID: B580B976584B5F30
8 changed files with 153 additions and 9 deletions

View file

@ -1,3 +1,4 @@
pub fn yeet() -> String {
String::from("yeet")
}
pub const PERM_CODES: [&str; 2] = [
"modify-blog-posts",
"modify-users"
];

44
src/rb/schema.rs Normal file
View file

@ -0,0 +1,44 @@
table! {
permissions (id) {
id -> Uuid,
user_id -> Uuid,
name -> Varchar,
}
}
table! {
refresh_tokens (token) {
token -> Bytea,
user_id -> Uuid,
expires_at -> Timestamp,
last_used_at -> Nullable<Timestamp>,
}
}
table! {
security_reports (id) {
id -> Uuid,
report_time -> Timestamp,
report_type -> Varchar,
content -> Text,
}
}
table! {
users (id) {
id -> Uuid,
username -> Varchar,
password -> Text,
blocked -> Bool,
}
}
joinable!(permissions -> users (user_id));
joinable!(refresh_tokens -> users (user_id));
allow_tables_to_appear_in_same_query!(
permissions,
refresh_tokens,
security_reports,
users,
);