Show More
@@ -36,6 +36,11 b' def admin_routes(config):' | |||
|
36 | 36 | def includeme(config): |
|
37 | 37 | |
|
38 | 38 | config.include(admin_routes, route_prefix=ADMIN_PREFIX + '/ops') |
|
39 | # make OLD entries from pylons work | |
|
40 | config.add_route( | |
|
41 | name='ops_ping_legacy', pattern=ADMIN_PREFIX + '/ping') | |
|
42 | config.add_route( | |
|
43 | name='ops_error_test_legacy', pattern=ADMIN_PREFIX + '/error_test') | |
|
39 | 44 | |
|
40 | 45 | # Scan module for configuration decorators. |
|
41 | 46 | config.scan('.views', ignore='.tests') |
@@ -41,6 +41,9 b' class OpsView(BaseAppView):' | |||
|
41 | 41 | @view_config( |
|
42 | 42 | route_name='ops_ping', request_method='GET', |
|
43 | 43 | renderer='json_ext') |
|
44 | @view_config( | |
|
45 | route_name='ops_ping_legacy', request_method='GET', | |
|
46 | renderer='json_ext') | |
|
44 | 47 | def ops_ping(self): |
|
45 | 48 | data = { |
|
46 | 49 | 'instance': self.request.registry.settings.get('instance_id'), |
@@ -55,6 +58,9 b' class OpsView(BaseAppView):' | |||
|
55 | 58 | @view_config( |
|
56 | 59 | route_name='ops_error_test', request_method='GET', |
|
57 | 60 | renderer='json_ext') |
|
61 | @view_config( | |
|
62 | route_name='ops_error_test_legacy', request_method='GET', | |
|
63 | renderer='json_ext') | |
|
58 | 64 | def ops_error_test(self): |
|
59 | 65 | """ |
|
60 | 66 | Test exception handling and emails on errors |
@@ -172,10 +172,6 b' def make_map(config):' | |||
|
172 | 172 | # CUSTOM ROUTES HERE |
|
173 | 173 | #========================================================================== |
|
174 | 174 | |
|
175 | # ping and pylons error test | |
|
176 | rmap.connect('ping', '%s/ping' % (ADMIN_PREFIX,), controller='home', action='ping') | |
|
177 | rmap.connect('error_test', '%s/error_test' % (ADMIN_PREFIX,), controller='home', action='error_test') | |
|
178 | ||
|
179 | 175 | # ADMIN REPOSITORY GROUPS ROUTES |
|
180 | 176 | with rmap.submapper(path_prefix=ADMIN_PREFIX, |
|
181 | 177 | controller='admin/repo_groups') as m: |
|
1 | NO CONTENT: file was removed |
General Comments 0
You need to be logged in to leave comments.
Login now