mirror of
https://github.com/suitenumerique/docs.git
synced 2026-09-26 11:35:05 +02:00
✨(backend) add a is_first_connection flag to the User model
Backend part of #1796. This changes allows to display an onboarding modal the first time that the get_me() API view is called. I originally tried to check if `User.last_login` was `None`, but it is updated as soon as the user is logged, so I chose to create a flag on the model.
This commit is contained in:
@@ -318,6 +318,25 @@ class UserViewSet(
|
||||
self.serializer_class(request.user, context=context).data
|
||||
)
|
||||
|
||||
@drf.decorators.action(
|
||||
detail=False,
|
||||
methods=["post"],
|
||||
url_path="onboarding-done",
|
||||
permission_classes=[permissions.IsAuthenticated],
|
||||
)
|
||||
def onboarding_done(self, request):
|
||||
"""
|
||||
Allows the frontend to mark the first connection as done for the current user,
|
||||
e.g. after showing an onboarding message.
|
||||
"""
|
||||
if request.user.is_first_connection:
|
||||
request.user.is_first_connection = False
|
||||
request.user.save(update_fields=["is_first_connection", "updated_at"])
|
||||
|
||||
return drf.response.Response(
|
||||
{"detail": "Onboarding marked as done."}, status=status.HTTP_200_OK
|
||||
)
|
||||
|
||||
|
||||
class ReconciliationConfirmView(APIView):
|
||||
"""API endpoint to confirm user reconciliation emails.
|
||||
@@ -2224,6 +2243,7 @@ class DocumentAccessViewSet(
|
||||
"user__full_name",
|
||||
"user__email",
|
||||
"user__language",
|
||||
"user__is_first_connection",
|
||||
"document__id",
|
||||
"document__path",
|
||||
"document__depth",
|
||||
|
||||
Reference in New Issue
Block a user