5dd29d45d8
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
17 lines
412 B
Python
17 lines
412 B
Python
"""Core managed objects"""
|
|
from authentik.core.models import Source
|
|
from authentik.managed.manager import EnsureExists, ObjectManager
|
|
|
|
|
|
class CoreManager(ObjectManager):
|
|
"""Core managed objects"""
|
|
|
|
def reconcile(self):
|
|
return [
|
|
EnsureExists(
|
|
Source,
|
|
"goauthentik.io/sources/inbuilt",
|
|
name="authentik Built-in",
|
|
),
|
|
]
|