Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordartcafe <github@dartcafe.de>2020-02-29 22:36:17 +0300
committerdartcafe <github@dartcafe.de>2020-02-29 22:37:49 +0300
commitbc4aa364b540d805f14a132c930d19ec8e925319 (patch)
tree08b0bba3350b6ef8eede94749386b9033d2c9071 /appinfo
parent7af2ab226c3d51b8ec7e200ef7fac3a19dbee66e (diff)
delete user - initial commit
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/routes.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/appinfo/routes.php b/appinfo/routes.php
index afdb06ba..35acc005 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -45,6 +45,7 @@ return [
['name' => 'vote#get', 'url' => '/votes/get/{pollId}', 'verb' => 'GET'],
['name' => 'vote#set', 'url' => '/vote/set/', 'verb' => 'POST'],
['name' => 'vote#write', 'url' => '/vote/write/', 'verb' => 'POST'],
+ ['name' => 'vote#delete', 'url' => '/votes/delete/', 'verb' => 'POST'],
['name' => 'option#get', 'url' => '/options/get/{pollId}', 'verb' => 'GET'],
['name' => 'option#add', 'url' => '/option/add/', 'verb' => 'POST'],