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>2021-01-25 17:53:36 +0300
committerdartcafe <github@dartcafe.de>2021-01-25 17:53:36 +0300
commitb9551f3473da790fd6c417e958ff2c650322c941 (patch)
tree6cf9ea95b4db88afb26fe42a1d6bb20a2151ff71 /appinfo/routes.php
parent5abc264c46725cbdafe2a2f96636dd674da675b2 (diff)
fix #1357
Diffstat (limited to 'appinfo/routes.php')
-rw-r--r--appinfo/routes.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/appinfo/routes.php b/appinfo/routes.php
index e90b541d..ae0199d8 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -58,7 +58,7 @@ return [
['name' => 'poll#switchDeleted', 'url' => '/poll/{pollId}/switchDeleted', 'verb' => 'PUT'],
['name' => 'poll#clone', 'url' => '/poll/{pollId}/clone', 'verb' => 'GET'],
- ['name' => 'poll#getParticipantsEmailAddresses', 'url' => '/polls/{pollId}/addresses', 'verb' => 'GET'],
+ ['name' => 'poll#getParticipantsEmailAddresses', 'url' => '/poll/{pollId}/addresses', 'verb' => 'GET'],
['name' => 'option#list', 'url' => '/poll/{pollId}/options', 'verb' => 'GET'],
['name' => 'option#add', 'url' => '/option', 'verb' => 'POST'],