-
Notifications
You must be signed in to change notification settings - Fork 0
/
urls.py
executable file
·41 lines (29 loc) · 1 KB
/
urls.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
"""
"THE BEER-WARE LICENSE" (Revision 42):
---------------------------------------
<[email protected]> wrote this file on behalf of NRK (NORSK RIKSKRINGKASTING AS).
As long as you retain this notice you can do whatever you want with this stuff.
If we meet some day, and you think this stuff is worth it, you can buy me a beer in return.
Henrik Lied
"""
from django.conf.urls.defaults import *
urlpatterns = patterns('youtube_timer.views',
url(r'^$',
view='overview',
name='youtube_timer_overview'),
url(r'^logout/$',
view='logout',
name='youtube_timer_logout'),
url(r'^add_timer/$',
view='add_timer',
name='youtube_timer_add'),
url(r'^delete/$',
view='delete',
name='youtube_timer_delete'),
url(r'^force_publish/$',
view='force_publish',
name='youtube_timer_force_publish'),
url(r'^force_unpublish/$',
view='force_unpublish',
name='youtube_timer_force_unpublish'),
)