diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2016-11-17 17:35:14 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2016-11-21 11:30:00 +0100 |
commit | 6f4cb12be2d026c45237359e2b0eea2266b86bdf (patch) | |
tree | a8832d88f2f4a7c47ed3411bb90023c0168e28c0 /core/routes.php | |
parent | 53c8391e9691ac9eb92adf5b80436f5065944a1f (diff) | |
download | nextcloud-server-6f4cb12be2d026c45237359e2b0eea2266b86bdf.tar.gz nextcloud-server-6f4cb12be2d026c45237359e2b0eea2266b86bdf.zip |
Add identity proof
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'core/routes.php')
-rw-r--r-- | core/routes.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/routes.php b/core/routes.php index e5636ff6c00..2b8080a3b7b 100644 --- a/core/routes.php +++ b/core/routes.php @@ -61,6 +61,7 @@ $application->registerRoutes($this, [ ['root' => '/cloud', 'name' => 'OCS#getCurrentUser', 'url' => '/user', 'verb' => 'GET'], ['root' => '', 'name' => 'OCS#getConfig', 'url' => '/config', 'verb' => 'GET'], ['root' => '/person', 'name' => 'OCS#personCheck', 'url' => '/check', 'verb' => 'POST'], + ['root' => '/identityproof', 'name' => 'OCS#getIdentityProof', 'url' => '/key/{cloudId}', 'verb' => 'GET'], ], ]); |