move faq to wiki

This commit is contained in:
2023-10-24 14:24:33 +02:00
parent afa5597f49
commit e9641e6a33
3 changed files with 1 additions and 80 deletions

View File

@ -4,11 +4,6 @@ use sqlx::SqlitePool;
use crate::model::{planned_event::PlannedEvent, user::User};
#[get("/faq")]
async fn faq(user: User) -> Template {
Template::render("faq", context!(loggedin_user: user))
}
#[get("/cal")]
async fn cal(db: &State<SqlitePool>) -> (ContentType, String) {
//TODO: add unit test once proper functionality is there