diff --git a/authentik/stages/user_write/stage.py b/authentik/stages/user_write/stage.py index 554cd36d6..36fea982f 100644 --- a/authentik/stages/user_write/stage.py +++ b/authentik/stages/user_write/stage.py @@ -24,6 +24,9 @@ LOGGER = get_logger() class UserWriteStageView(StageView): """Finalise Enrollment flow by creating a user object.""" + def post(self, request: HttpRequest) -> HttpResponse: + return self.get(request) + def get(self, request: HttpRequest) -> HttpResponse: """Save data in the current flow to the currently pending user. If no user is pending, a new user is created."""