diff options
Diffstat (limited to 'server/controllers/static.ts')
-rw-r--r-- | server/controllers/static.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/server/controllers/static.ts b/server/controllers/static.ts index 55e7392a1..4fd58f70c 100644 --- a/server/controllers/static.ts +++ b/server/controllers/static.ts | |||
@@ -136,6 +136,12 @@ staticRouter.use('/.well-known/dnt/', | |||
136 | } | 136 | } |
137 | ) | 137 | ) |
138 | 138 | ||
139 | staticRouter.use('/.well-known/change-password', | ||
140 | (_, res: express.Response) => { | ||
141 | res.redirect('/my-account/settings') | ||
142 | } | ||
143 | ) | ||
144 | |||
139 | // --------------------------------------------------------------------------- | 145 | // --------------------------------------------------------------------------- |
140 | 146 | ||
141 | export { | 147 | export { |