mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2025-07-12 19:34:32 +02:00
Add peer group model
This commit is contained in:
parent
c79c587945
commit
797058b29b
4 changed files with 64 additions and 1 deletions
19
user_manager/migrations/0004_useracl_peer_groups.py
Normal file
19
user_manager/migrations/0004_useracl_peer_groups.py
Normal file
|
@ -0,0 +1,19 @@
|
|||
# Generated by Django 5.1.5 on 2025-01-20 12:45
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('user_manager', '0003_authenticationtoken'),
|
||||
('wireguard', '0023_peergroup'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='useracl',
|
||||
name='peer_groups',
|
||||
field=models.ManyToManyField(blank=True, to='wireguard.peergroup'),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue