core.security.permissions ========================= .. py:module:: core.security.permissions .. autoapi-nested-parse:: OneGov uses a very simple permissions model by default. There are no read/write permissions, just intents. That means a permission shows the intended audience. This is the default however, any application building on top of onegov.core may of course introduce its own byzantine permission system. Classes ------- .. autoapisummary:: core.security.permissions.Intent core.security.permissions.Public core.security.permissions.Private core.security.permissions.Personal core.security.permissions.Secret Module Contents --------------- .. py:class:: Intent Base class of all intents. Should never be used directly. This is only used for type checking. .. py:class:: Public Bases: :py:obj:`Intent` The general public is allowed to do this. .. py:class:: Private Bases: :py:obj:`Intent` Trusted people are allowed to do this. .. py:class:: Personal Bases: :py:obj:`Intent` Registered members are allowed to do this. .. py:class:: Secret Bases: :py:obj:`Intent` Only Demi-Gods are allowed to do this.