Merge "Add pharos-validator tool"
[pharos.git] / tools / pharos-dashboard / src / api / 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, include
27 from rest_framework import routers
28
29 from api.views import *
30
31 router = routers.DefaultRouter()
32 router.register(r'resources', ResourceViewSet)
33 router.register(r'servers', ServerViewSet)
34 router.register(r'bookings', BookingViewSet)
35
36 urlpatterns = [
37     url(r'^', include(router.urls)),
38     url(r'^token$', GenerateTokenView.as_view(), name='generate_token'),
39 ]