# welco - multichannel request processing # Copyright (C) 2015 Entr'ouvert # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU Affero General Public License as published # by the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . from django.conf.urls import url from .views import edit_note, feeder, mail_count, mail_response, note, qualification_save, reject, viewer urlpatterns = [ url(r'^mail/viewer/$', viewer, name='mail-viewer'), url(r'^mail/feeder/$', feeder, name='mail-feeder'), url(r'^ajax/mail/reject$', reject, name='mail-reject'), url(r'^ajax/qualification-mail-save$', qualification_save, name='qualif-mail-save'), url(r'^ajax/mail/edit-note/$', edit_note, name='mail-edit-note'), url(r'^ajax/mail/note/(?P\w+)$', note, name='mail-note'), url(r'^ajax/count/mail/$', mail_count, name='mail-count'), url(r'^api/mail/response/$', mail_response, name='mail-api-response'), ]