summaryrefslogtreecommitdiff
path: root/src/routes.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes.rs')
-rw-r--r--src/routes.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/routes.rs b/src/routes.rs
index e38f744..49d9fb6 100644
--- a/src/routes.rs
+++ b/src/routes.rs
@@ -15,7 +15,7 @@ pub fn routes(app: &App) -> Router<App> {
// UI routes that require the administrator to complete setup first.
let ui_setup_required = Router::new()
.route("/", get(ui::handlers::index))
- .route("/ch/{channel}", get(ui::handlers::conversation))
+ .route("/c/{conversation}", get(ui::handlers::conversation))
.route("/invite/{invite}", get(ui::handlers::invite))
.route("/login", get(ui::handlers::login))
.route("/me", get(ui::handlers::me))