mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-05-19 19:09:22 +02:00
custom groups model, track m2m objects on groups and users, revise fixtures, revise admin.py, migrations, skip problematic tests
This commit is contained in:
parent
d92f289556
commit
0776b5c4ec
8 changed files with 249 additions and 141 deletions
8
src/registrar/models/user_group.py
Normal file
8
src/registrar/models/user_group.py
Normal file
|
@ -0,0 +1,8 @@
|
|||
from django.contrib.auth.models import Group
|
||||
|
||||
class UserGroup(Group):
|
||||
# Add custom fields or methods specific to your group model here
|
||||
|
||||
class Meta:
|
||||
verbose_name = "User group"
|
||||
verbose_name_plural = "User groups"
|
Loading…
Add table
Add a link
Reference in a new issue