Display notifications
This commit is contained in:
@@ -5,6 +5,7 @@ pub mod blogs;
|
||||
pub mod comments;
|
||||
pub mod instance;
|
||||
pub mod likes;
|
||||
pub mod notifications;
|
||||
pub mod posts;
|
||||
pub mod session;
|
||||
pub mod user;
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
use rocket_contrib::Template;
|
||||
|
||||
use db_conn::DbConn;
|
||||
use models::notifications::Notification;
|
||||
use models::users::User;
|
||||
|
||||
#[get("/notifications")]
|
||||
fn notifications(conn: DbConn, user: User) -> Template {
|
||||
Template::render("notifications/index", json!({
|
||||
"account": user,
|
||||
"notifications": Notification::find_for_user(&*conn, &user)
|
||||
}))
|
||||
}
|
||||
Reference in New Issue
Block a user