Use POST instead GET to sync groups

This commit is contained in:
Benjamin Renard 2014-01-27 23:55:06 +01:00
parent 61f1a78943
commit e8a355c06e

View file

@ -89,5 +89,5 @@ def make_router():
('GET', '^/$', home),
('GET', '^/login$', login),
('GET', '^/subscribe$', subscribe),
('GET', '^/sync$', sync),
('POST', '^/sync$', sync),
)