mirror of
https://github.com/Steffo99/sophon.git
synced 2025-01-08 23:09:47 +00:00
🐛 Fix fields being read-only with administrator privileges
This commit is contained in:
parent
6c5ef55bc0
commit
ee4d774d99
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ class SophonModel(models.Model):
|
|||
|
||||
return set.difference(
|
||||
cls.get_fields(),
|
||||
cls.get_administrable_fields(),
|
||||
cls.get_administrable_fields().union(cls.get_editable_fields()),
|
||||
)
|
||||
|
||||
@abc.abstractmethod
|
||||
|
|
Loading…
Reference in a new issue