d3f80f2339
This implements a structured user group model, propagating its changes to vanilla Django groups. It features cycle detection at save-time, although this cycle detection can only be seen as a fallback and forms should check the acyclicity of their changes before committing using the provided class method.
6 lines
129 B
Python
6 lines
129 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class WikiGroupsConfig(AppConfig):
|
|
name = "wiki_groups"
|
|
verbose_name = "Wiki Groups"
|