def get(self, user: User): return user.serialize(), HTTPStatus.OK
def post(self, user: User): # send_confirmation_email(user=user) return user.serialize(), HTTPStatus.CREATED