Authentication: implement part of get_dashboard_url.

pull/72/head
Tom Hacohen 3 years ago
parent e8bd8927a0
commit fa0cd01a59

@ -268,6 +268,19 @@ async def change_password(data: ChangePassword, request: Request, user: User = D
return Response(status_code=status.HTTP_204_NO_CONTENT)
@authentication_router.post("/dashboard_url/")
def dashboard_url(user: User = Depends(get_authenticated_user)):
# XXX-TOM
get_dashboard_url = app_settings.DASHBOARD_URL_FUNC
if get_dashboard_url is None:
raise ValidationError("not_supported", "This server doesn't have a user dashboard.")
ret = {
"url": get_dashboard_url(request, *args, **kwargs),
}
return MsgpackResponse(ret)
def signup_save(data: SignupIn, request: Request) -> User:
user_data = data.user
with transaction.atomic():

Loading…
Cancel
Save