Commit 489f919b authored by 王浩's avatar 王浩

Merge branch 'haow/dev' into 'test'

fix code

See merge request alpha/sun!291
parents 03669c34 970f0876
......@@ -189,7 +189,7 @@ class ReplyManageBatchUpdate(APIView):
}
class ReplyManageMove(APIView):
class ReplyManageBatchMove(APIView):
def post(self, request):
ids = json.loads(request.POST.get('ids', '[]'))
......
......@@ -223,6 +223,7 @@ urlpatterns = [
url(r'^reply/vote$', ReplyVote.as_view()),
# 评论管理
url(r'^reply/manage/batch/move$', ReplyManageBatchMove.as_view()),
url(r'^reply/manage/list$', ReplyManageListView.as_view()),
url(r'^reply/manage/create$', ReplyManageCreateView.as_view()),
url(r'^reply/manage/batch/update$', ReplyManageBatchUpdate.as_view()),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment