🐛(backend) fix manage roles on domain admin view

Fix creation of new role to manage mail domain on admin interface
This commit is contained in:
Sabrina Demagny
2024-12-12 16:14:28 +01:00
parent b060bbea51
commit 841a6c27ba
2 changed files with 2 additions and 1 deletions

View File

@@ -20,6 +20,7 @@ and this project adheres to
### Fixed
- 🐛(backend) fix manage roles on domain admin view
- 🐛(mailbox) fix activate mailbox feature
- 🔧(helm) fix the configuration environment #579

View File

@@ -37,7 +37,7 @@ class UserMailDomainAccessInline(admin.TabularInline):
extra = 0
model = models.MailDomainAccess
readonly_fields = ("created_at", "updated_at", "domain", "user")
readonly_fields = ("created_at", "updated_at", "domain")
@admin.register(models.MailDomain)