Login
4 branches 0 tags
Ben (Desktop/Arch) Fixed dir_root / state 6b8d8a1 1 month ago 131 Commits
rubhub / src / controllers / mod.rs
mod auth;
mod contact;
mod landing;
mod not_found;
mod project;
mod user;

pub use auth::{handle_login, handle_registration, login_page, logout, registration_page};
pub use contact::contact;
pub use landing::index;
pub use not_found::{not_found, not_found_get};
pub use project::{
    project_branches_get, project_commits_get, project_new_get, project_new_post,
    project_overview_get, project_overview_tree_get, project_settings_get, project_settings_post,
    project_tags_get,
};
pub use user::{handle_settings, settings_page, user_page};