| # Copyright 2013 the Melange authors. |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| """Module containing URL related helper utilities.""" |
| |
| |
| class UrlNames(object): |
| """URL names for Code In views.""" |
| |
| CONNECTION_LIST_FOR_ORG_ADMIN = 'connection_list_for_org_admin' |
| CONNECTION_LIST_FOR_USER = 'connection_list_for_user' |
| CONNECTION_MANAGE_AS_ORG = 'connection_manage_as_org' |
| CONNECTION_MARK_AS_SEEN_BY_ORG = 'connection_mark_as_seen_by_org' |
| CONNECTION_MARK_AS_SEEN_BY_USER = 'connection_mark_as_seen_by_user' |
| CONNECTION_MANAGE_AS_USER = 'connection_manage_as_user' |
| CONNECTION_PICK_ORG = 'connection_pick_org' |
| CONNECTION_START_AS_ORG = 'connection_start_as_org' |
| CONNECTION_START_AS_USER = 'connection_start_as_user' |
| ORG_PROFILE_EDIT = 'ci_org_profile_edit' |