diff options
author | Daniel Weipert <git@mail.dweipert.de> | 2025-08-20 14:58:10 +0200 |
---|---|---|
committer | Daniel Weipert <git@mail.dweipert.de> | 2025-08-20 14:58:10 +0200 |
commit | 6dc0447320272aaae51a98eb6606597019f986d3 (patch) | |
tree | 0acb527801a1d9eac943b5e0b0ccb33e610cd755 /src/Router/routes_client_server.php | |
parent | d08f4c83470c25d35d24594bd73e4effdac191a0 (diff) |
login produces devices and tokens
Diffstat (limited to 'src/Router/routes_client_server.php')
-rw-r--r-- | src/Router/routes_client_server.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Router/routes_client_server.php b/src/Router/routes_client_server.php index a0b117b..8979af5 100644 --- a/src/Router/routes_client_server.php +++ b/src/Router/routes_client_server.php @@ -46,4 +46,9 @@ return function (RouteConfigurator $routes): void ->add("matrix_client_v3_sync", "/_matrix/client/v3/sync") ->controller([SyncController::class, "sync"]) ->methods(["GET"]); + + $routes + ->add("matrix_client_v3_refresh", "/_matrix/client/v3/refresh") + ->controller([KeyController::class, "refresh"]) + ->methods(["POST"]); }; |