Change app-passwords route and add to backend

This commit is contained in:
Paul Frazee
2023-04-21 18:46:36 -05:00
parent f4c6b039e1
commit 868c16dc59
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -92,6 +92,7 @@ func serve(cctx *cli.Context) error {
e.GET("/search", server.WebGeneric)
e.GET("/notifications", server.WebGeneric)
e.GET("/settings", server.WebGeneric)
e.GET("/settings/app-passwords", server.WebGeneric)
e.GET("/sys/debug", server.WebGeneric)
e.GET("/sys/log", server.WebGeneric)
e.GET("/support", server.WebGeneric)
+1 -1
View File
@@ -13,7 +13,7 @@ export const router = new Router({
PostRepostedBy: '/profile/:name/post/:rkey/reposted-by',
Debug: '/sys/debug',
Log: '/sys/log',
AppPasswords: '/app-passwords',
AppPasswords: '/settings/app-passwords',
Support: '/support',
PrivacyPolicy: '/support/privacy',
TermsOfService: '/support/tos',