summaryrefslogtreecommitdiff
path: root/fig-web/src/Fig/Web/Auth.hs
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2026-02-20 18:41:01 -0500
committerLLLL Colonq <llll@colonq>2026-02-20 18:41:01 -0500
commitb837bfb0f878a84d429a2b4f39bce33fc58274ba (patch)
tree5f91c0be78d509a083b979d30aa1008f7600c0ae /fig-web/src/Fig/Web/Auth.hs
parentfb284963700ddf126fa4a1113158c28e0aa60733 (diff)
web: user-id endpoint
Diffstat (limited to 'fig-web/src/Fig/Web/Auth.hs')
-rw-r--r--fig-web/src/Fig/Web/Auth.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/fig-web/src/Fig/Web/Auth.hs b/fig-web/src/Fig/Web/Auth.hs
index 0e372c8..fa7f9d0 100644
--- a/fig-web/src/Fig/Web/Auth.hs
+++ b/fig-web/src/Fig/Web/Auth.hs
@@ -17,7 +17,7 @@ data Credentials = Credentials
}
authed :: SecureModuleArgs -> (Credentials -> Sc.ActionM ()) -> Sc.ActionM ()
authed args h | args.options.simAuth = do
- let auth = Credentials { user = "fake_test_user", twitchId = "69" }
+ let auth = Credentials { user = "lcolonq", twitchId = "866686220" }
h auth
authed _ h = do
muser <- header "Remote-User"