Login: add an action indicator to know the user signed a login request.

This commit is contained in:
Tom Hacohen
2020-06-17 14:08:08 +03:00
parent d1017aac76
commit 54268ac027
2 changed files with 6 additions and 1 deletions

View File

@@ -416,6 +416,7 @@ class AuthenticationLoginSerializer(serializers.Serializer):
class AuthenticationLoginInnerSerializer(AuthenticationLoginChallengeSerializer):
challenge = BinaryBase64Field()
host = serializers.CharField()
action = serializers.CharField()
def create(self, validated_data):
raise NotImplementedError()