Toggle navigation
Toggle navigation
This project
Loading...
Sign in
cse437_e
/
smartdoorlock-backend
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
최지우
2020-11-04 19:47:27 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
65097863c9a008025db78b895c5d09fe1c322e58
65097863
1 parent
9241eb1a
edit to restful uri
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
src/urls.py
src/urls.py
View file @
6509786
...
...
@@ -20,8 +20,8 @@ from api import views
urlpatterns
=
[
path
(
'admin/'
,
admin
.
site
.
urls
),
path
(
'api/video
/
'
,
views
.
VideoList
.
as_view
()),
path
(
'api/video/<int:vid_id>
/
'
,
views
.
VideoDownload
.
as_view
()),
path
(
'auto/checkDate
/
'
,
views
.
CheckDate
.
as_view
()),
path
(
'api/setting
/
'
,
views
.
Recording
.
as_view
()),
path
(
'api/video'
,
views
.
VideoList
.
as_view
()),
path
(
'api/video/<int:vid_id>'
,
views
.
VideoDownload
.
as_view
()),
path
(
'auto/checkDate'
,
views
.
CheckDate
.
as_view
()),
path
(
'api/setting'
,
views
.
Recording
.
as_view
()),
]
...
...
Please
register
or
login
to post a comment