urls.py
url(r'^v1/files/$', MyFileView.as_view(), name='api-upload'),
url(r'^v1/files/$', MyFileView.as_view(), name='api-view-all'),
views.py
class MyFileView(APIView):
def post():
pass
def get():
pass
My question is: why POST api/v1/files
works like GET api/v1/files/
? I thought POST api/v1/files
should return 404. Anything wrong?
UPDATE
But api/v1/files/<id>
does not have this issue. api/v1/files/<id>/
will return 404.
Thanks