summaryrefslogtreecommitdiffstats
path: root/settings/routes.php
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2019-04-03 16:00:46 +0200
committerRoeland Jago Douma <roeland@famdouma.nl>2019-05-20 20:50:27 +0200
commitf03eb7ec3c130d19323f7fb4bdb5ba398f1b3e2d (patch)
tree5af334055b94b3b8119b3f76d974f136d26a0199 /settings/routes.php
parentae7f89fd9f2bb87c0254f5fa087d0d9472612644 (diff)
downloadnextcloud-server-f03eb7ec3c130d19323f7fb4bdb5ba398f1b3e2d.tar.gz
nextcloud-server-f03eb7ec3c130d19323f7fb4bdb5ba398f1b3e2d.zip
Remote wipe support
This allows a user to mark a token for remote wipe. Clients that support this can then wipe the device properly. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'settings/routes.php')
-rw-r--r--settings/routes.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/settings/routes.php b/settings/routes.php
index 10c98d4f26a..2ac24bbca3a 100644
--- a/settings/routes.php
+++ b/settings/routes.php
@@ -42,6 +42,8 @@ $application->registerRoutes($this, [
'AuthSettings' => ['url' => '/settings/personal/authtokens'],
],
'routes' => [
+ ['name' => 'AuthSettings#wipe', 'url' => '/settings/personal/authtokens/wipe/{id}', 'verb' => 'POST'],
+
['name' => 'MailSettings#setMailSettings', 'url' => '/settings/admin/mailsettings', 'verb' => 'POST'],
['name' => 'MailSettings#storeCredentials', 'url' => '/settings/admin/mailsettings/credentials', 'verb' => 'POST'],
['name' => 'MailSettings#sendTestMail', 'url' => '/settings/admin/mailtest', 'verb' => 'POST'],