summaryrefslogtreecommitdiff
path: root/src/ui/routes/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/routes/mod.rs')
-rw-r--r--src/ui/routes/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ui/routes/mod.rs b/src/ui/routes/mod.rs
index 72d9a4a..48b3f90 100644
--- a/src/ui/routes/mod.rs
+++ b/src/ui/routes/mod.rs
@@ -6,6 +6,7 @@ mod ch;
mod get;
mod invite;
mod login;
+mod me;
mod path;
mod setup;
@@ -16,6 +17,7 @@ pub fn router(app: &App) -> Router<App> {
.route("/setup", get(setup::get::handler)),
Router::new()
.route("/", get(get::handler))
+ .route("/me", get(me::get::handler))
.route("/login", get(login::get::handler))
.route("/ch/:channel", get(ch::channel::get::handler))
.route("/invite/:invite", get(invite::invite::get::handler))