__init__.py
102 lines
| 3.2 KiB
| text/x-python
|
PythonLexer
r1933 | # -*- coding: utf-8 -*- | |||
r4306 | # Copyright (C) 2016-2020 RhodeCode GmbH | |||
r1933 | # | |||
# This program is free software: you can redistribute it and/or modify | ||||
# it under the terms of the GNU Affero General Public License, version 3 | ||||
# (only), as published by the Free Software Foundation. | ||||
# | ||||
# 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 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 <http://www.gnu.org/licenses/>. | ||||
# | ||||
# This program is dual-licensed. If you wish to learn more about the | ||||
# RhodeCode Enterprise Edition, including its added features, Support services, | ||||
# and proprietary license terms, please see https://rhodecode.com/licenses/ | ||||
from rhodecode.apps._base import ADMIN_PREFIX | ||||
def admin_routes(config): | ||||
r4610 | from rhodecode.apps.journal.views import JournalView | |||
r1933 | ||||
config.add_route( | ||||
name='journal', pattern='/journal') | ||||
r4610 | config.add_view( | |||
JournalView, | ||||
attr='journal', | ||||
route_name='journal', request_method='GET', | ||||
renderer=None) | ||||
r1933 | config.add_route( | |||
name='journal_rss', pattern='/journal/rss') | ||||
r4610 | config.add_view( | |||
JournalView, | ||||
attr='journal_rss', | ||||
route_name='journal_rss', request_method='GET', | ||||
renderer=None) | ||||
r1933 | config.add_route( | |||
name='journal_atom', pattern='/journal/atom') | ||||
r4610 | config.add_view( | |||
JournalView, | ||||
attr='journal_atom', | ||||
route_name='journal_atom', request_method='GET', | ||||
renderer=None) | ||||
r1933 | ||||
config.add_route( | ||||
name='journal_public', pattern='/public_journal') | ||||
r4610 | config.add_view( | |||
JournalView, | ||||
attr='journal_public', | ||||
route_name='journal_public', request_method='GET', | ||||
renderer=None) | ||||
r1933 | config.add_route( | |||
name='journal_public_atom', pattern='/public_journal/atom') | ||||
r4610 | config.add_view( | |||
JournalView, | ||||
attr='journal_public_atom', | ||||
route_name='journal_public_atom', request_method='GET', | ||||
renderer=None) | ||||
r1933 | config.add_route( | |||
name='journal_public_atom_old', pattern='/public_journal_atom') | ||||
r4610 | config.add_view( | |||
JournalView, | ||||
attr='journal_public_atom', | ||||
route_name='journal_public_atom_old', request_method='GET', | ||||
renderer=None) | ||||
r1933 | ||||
config.add_route( | ||||
name='journal_public_rss', pattern='/public_journal/rss') | ||||
r4610 | config.add_view( | |||
JournalView, | ||||
attr='journal_public_rss', | ||||
route_name='journal_public_rss', request_method='GET', | ||||
renderer=None) | ||||
r1933 | config.add_route( | |||
name='journal_public_rss_old', pattern='/public_journal_rss') | ||||
r4610 | config.add_view( | |||
JournalView, | ||||
attr='journal_public_rss', | ||||
route_name='journal_public_rss_old', request_method='GET', | ||||
renderer=None) | ||||
r1933 | ||||
config.add_route( | ||||
name='toggle_following', pattern='/toggle_following') | ||||
r4610 | config.add_view( | |||
JournalView, | ||||
attr='toggle_following', | ||||
route_name='toggle_following', request_method='POST', | ||||
renderer='json_ext') | ||||
r1933 | ||||
def includeme(config): | ||||
config.include(admin_routes, route_prefix=ADMIN_PREFIX) | ||||