Fixed group update method. Fixed #2541.
This commit is contained in:
parent
db38e5e075
commit
2fae952edd
@ -128,3 +128,11 @@ class GroupSerializer(ModelSerializer):
|
|||||||
'name',
|
'name',
|
||||||
'permissions',
|
'permissions',
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def update(self, *args, **kwargs):
|
||||||
|
"""
|
||||||
|
Customized update method. We just refresh the instance from the
|
||||||
|
database because of an unknown bug in Django REST framework.
|
||||||
|
"""
|
||||||
|
instance = super().update(*args, **kwargs)
|
||||||
|
return Group.objects.get(pk=instance.pk)
|
||||||
|
Loading…
Reference in New Issue
Block a user