forked from 0x2620/pandora
pass user
This commit is contained in:
parent
2a0c2acc97
commit
5ac305c620
2 changed files with 2 additions and 2 deletions
|
@ -274,7 +274,7 @@ def addCollection(request, data):
|
|||
pos.position = qs.aggregate(Max('position'))['position__max'] + 1
|
||||
pos.save()
|
||||
response = json_response(status=200, text='created')
|
||||
response['data'] = collection.json()
|
||||
response['data'] = collection.json(user=request.user)
|
||||
add_changelog(request, data, collection.get_id())
|
||||
return render_to_json_response(response)
|
||||
actions.register(addCollection, cache=False)
|
||||
|
|
|
@ -269,7 +269,7 @@ def addList(request, data):
|
|||
pos.position = qs.aggregate(Max('position'))['position__max'] + 1
|
||||
pos.save()
|
||||
response = json_response(status=200, text='created')
|
||||
response['data'] = list.json()
|
||||
response['data'] = list.json(user=request.user)
|
||||
add_changelog(request, data, list.get_id())
|
||||
return render_to_json_response(response)
|
||||
actions.register(addList, cache=False)
|
||||
|
|
Loading…
Reference in a new issue