This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/passbook/admin/forms/source.py

8 lines
233 B
Python
Raw Normal View History

2018-11-26 17:22:22 +00:00
"""passbook core source form fields"""
# from django import forms
2019-02-21 15:06:57 +00:00
SOURCE_FORM_FIELDS = ['name', 'slug', 'enabled', 'policies']
2019-10-28 16:40:57 +00:00
SOURCE_SERIALIZER_FIELDS = ['pk', 'name', 'slug', 'enabled', 'policies']
2018-11-26 17:22:22 +00:00
# class SourceForm(forms.Form)