diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2025-07-01 15:30:44 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2025-07-03 22:43:44 -0400 |
| commit | 1cafeb5ec92c1dc4ad74fbed58b15a8ab2f3c0cf (patch) | |
| tree | 0ecca3ed4133210286e9d11b2d2027136f09113a /src/routes.rs | |
| parent | 8d412732dc094ead3c5cf86c005d187f9624fc65 (diff) | |
Move the `/ch` channel view to `/c` (for conversation).
Diffstat (limited to 'src/routes.rs')
| -rw-r--r-- | src/routes.rs | 2 |
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)) |
