allow vorstand to send mail + notifications #602

Merged
philipp merged 1 commits from allow-vorstand-to-send-things into staging 2024-06-21 11:25:14 +02:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit 3e983e05f9 - Show all commits

View File

@ -9,8 +9,8 @@ use sqlx::SqlitePool;
use crate::model::log::Log;
use crate::model::mail::Mail;
use crate::model::role::Role;
use crate::model::user::AdminUser;
use crate::model::user::UserWithDetails;
use crate::model::user::{AdminUser, VorstandUser};
use crate::tera::Config;
#[get("/mail")]
@ -27,7 +27,7 @@ async fn index(
context.insert(
"loggedin_user",
&UserWithDetails::from_user(admin.user, db).await,
&UserWithDetails::from_user(admin.0, db).await,
);
context.insert("roles", &roles);

View File

@ -2,7 +2,7 @@ use crate::model::{
log::Log,
notification::Notification,
role::Role,
user::{AdminUser, User, UserWithDetails, VorstandUser},
user::{User, UserWithDetails, VorstandUser},
};
use itertools::Itertools;
use rocket::{
@ -27,7 +27,7 @@ async fn index(
}
context.insert(
"loggedin_user",
&UserWithDetails::from_user(user.user, db).await,
&UserWithDetails::from_user(user.0, db).await,
);
let users: Vec<User> = User::all(db)