You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
416 B
11 lines
416 B
from django.conf.urls import url
|
|
from journals import api
|
|
urlpatterns = [
|
|
url(r'set_teacher/$', api.set_teacher),
|
|
url(r'set_ht/$', api.set_ht),
|
|
url(r'open_lj/$', api.open_lj),
|
|
url(r'check_jaccess/$', api.check_jaccess),
|
|
url(r'check_exists_jhomework/$', api.check_exists_jhomework),
|
|
url(r'check_exists_jexam/$', api.check_exists_jexam),
|
|
url(r'check_block/$', api.check_block)
|
|
]
|
|
|