3962a0c6d7a5999d1b2669adbcf3ce1f2b6b023d
[pharos.git] / tools / pharos-dashboard / account / urls.py
1 ##############################################################################
2 # Copyright (c) 2016 Max Breitenfeldt and others.
3 #
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9
10
11 """pharos_dashboard URL Configuration
12
13 The `urlpatterns` list routes URLs to views. For more information please see:
14     https://docs.djangoproject.com/en/1.10/topics/http/urls/
15 Examples:
16 Function views
17     1. Add an import:  from my_app import views
18     2. Add a URL to urlpatterns:  url(r'^$', views.home, name='home')
19 Class-based views
20     1. Add an import:  from other_app.views import Home
21     2. Add a URL to urlpatterns:  url(r'^$', Home.as_view(), name='home')
22 Including another URLconf
23     1. Import the include() function: from django.conf.urls import url, include
24     2. Add a URL to urlpatterns:  url(r'^blog/', include('blog.urls'))
25 """
26 from django.conf.urls import url
27
28 from account.views import *
29
30 urlpatterns = [
31     url(r'^settings/', AccountSettingsView.as_view(), name='settings'),
32     url(r'^authenticated/$', JiraAuthenticatedView.as_view(), name='authenticated'),
33     url(r'^login/$', JiraLoginView.as_view(), name='login'),
34     url(r'^logout/$', JiraLogoutView.as_view(), name='logout'),
35     url(r'^users/$', UserListView.as_view(), name='users'),
36 ]