From ba9e448904036770648ef89a3022b4e600aa8147 Mon Sep 17 00:00:00 2001 From: Atlas Agent Date: Wed, 22 Apr 2026 11:07:31 -0700 Subject: [PATCH] feat: add user handle alias redirect mechanism --- lib/algora_web/router.ex | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/algora_web/router.ex b/lib/algora_web/router.ex index 7a340350d..71cec27ea 100644 --- a/lib/algora_web/router.ex +++ b/lib/algora_web/router.ex @@ -56,6 +56,10 @@ defmodule AlgoraWeb.Router do redirect("/comfy-org", "/comfy", :permanent) redirect("/comfy-org/*path", "/comfy/*path", :permanent) + + # User/Org alias redirects (Issue #166) + redirect("/sayanget", "/say", :temporary) + redirect("/sayanget/*path", "/say/*path", :temporary) scope "/" do forward "/asset", AlgoraWeb.Plugs.RewriteAssetsPlug, upstream: :assets_url