core: fix error during migrations
This commit is contained in:
parent
49636f8fa0
commit
4e20cd0fee
|
@ -36,6 +36,9 @@ class UserViewSet(ModelViewSet):
|
||||||
queryset = User.objects.all()
|
queryset = User.objects.all()
|
||||||
serializer_class = UserSerializer
|
serializer_class = UserSerializer
|
||||||
|
|
||||||
|
def get_queryset(self):
|
||||||
|
return User.objects.all().exclude(pk=get_anonymous_user().pk)
|
||||||
|
|
||||||
@swagger_auto_schema(responses={200: UserSerializer(many=False)})
|
@swagger_auto_schema(responses={200: UserSerializer(many=False)})
|
||||||
@action(detail=False)
|
@action(detail=False)
|
||||||
# pylint: disable=invalid-name
|
# pylint: disable=invalid-name
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
"""authentik flows invitation forms"""
|
"""authentik flows invitation forms"""
|
||||||
from django import forms
|
from django import forms
|
||||||
from django.utils.translation import gettext as _
|
|
||||||
|
|
||||||
from authentik.admin.fields import CodeMirrorWidget, YAMLField
|
from authentik.admin.fields import CodeMirrorWidget, YAMLField
|
||||||
from authentik.stages.invitation.models import Invitation, InvitationStage
|
from authentik.stages.invitation.models import Invitation, InvitationStage
|
||||||
|
|
|
@ -8595,6 +8595,7 @@ definitions:
|
||||||
x-nullable: true
|
x-nullable: true
|
||||||
fixed_data:
|
fixed_data:
|
||||||
title: Fixed data
|
title: Fixed data
|
||||||
|
description: Optional fixed data to enforce on user enrollment.
|
||||||
type: object
|
type: object
|
||||||
OTPStaticStage:
|
OTPStaticStage:
|
||||||
description: OTPStaticStage Serializer
|
description: OTPStaticStage Serializer
|
||||||
|
|
Reference in New Issue