mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2025-06-30 05:24:29 +02:00
User toggle for webconsole and enhanced filter
This commit is contained in:
parent
64cd174639
commit
10e456b202
8 changed files with 98 additions and 19 deletions
|
@ -14,6 +14,8 @@ class UserAcl(models.Model):
|
|||
(50, 'Administrator'),
|
||||
))
|
||||
peer_groups = models.ManyToManyField(PeerGroup, blank=True)
|
||||
enable_console = models.BooleanField(default=True)
|
||||
enable_enhanced_filter = models.BooleanField(default=False)
|
||||
|
||||
created = models.DateTimeField(auto_now_add=True)
|
||||
updated = models.DateTimeField(auto_now=True)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue