1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-11-20 12:02:22 +03:00

Simple consent screen and storage

This commit is contained in:
Quentin Gliech
2022-04-29 12:16:39 +02:00
parent bfb00e281d
commit 28ff912029
13 changed files with 419 additions and 6 deletions

View File

@@ -124,6 +124,10 @@ where
"/oauth2/authorize/step",
get(self::oauth2::authorization::step_get),
)
.route(
"/consent",
get(self::oauth2::consent::get).post(self::oauth2::consent::post),
)
.merge(api_router)
.layer(Extension(pool.clone()))
.layer(Extension(templates.clone()))