Compare commits

...

3 Commits

Author SHA1 Message Date
Markos Gogoulos
c4c5ecf06a update version 2025-09-21 16:18:31 +03:00
Markos Gogoulos
725cc71960 fix migration 2025-09-21 16:17:18 +03:00
Markos Gogoulos
0c1c5bbb09 add new migration 2025-09-21 16:15:46 +03:00
2 changed files with 20 additions and 1 deletions

View File

@@ -1 +1 @@
VERSION = "6.7.0"
VERSION = "6.7.1"

View File

@@ -0,0 +1,19 @@
# Generated by Django 5.2.6 on 2025-09-21 11:49
from django.conf import settings
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('rbac', '0002_alter_rbacgroup_uid'),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]
operations = [
migrations.AlterField(
model_name='rbacgroup',
name='members',
field=models.ManyToManyField(related_name='rbac_groups', through='rbac.RBACMembership', through_fields=('rbac_group', 'user'), to=settings.AUTH_USER_MODEL),
),
]