mirror of
https://github.com/goauthentik/authentik
synced 2026-05-11 09:26:22 +02:00
8 lines
233 B
Python
8 lines
233 B
Python
"""passbook core source form fields"""
|
|
# from django import forms
|
|
|
|
SOURCE_FORM_FIELDS = ["name", "slug", "enabled", "policies"]
|
|
SOURCE_SERIALIZER_FIELDS = ["pk", "name", "slug", "enabled", "policies"]
|
|
|
|
# class SourceForm(forms.Form)
|