mirror of
https://github.com/Drop-OSS/drop.git
synced 2026-07-25 12:25:31 -04:00
[GH-ISSUE #95] Sign out functionality #51
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Pacodastre on GitHub (Jun 6, 2025).
Original GitHub issue: https://github.com/Drop-OSS/drop/issues/95
Currently, it is not possible to sign the current user out. Clicking the sign out button in the user menu returns a 404.
@DecDuck commented on GitHub (Jun 7, 2025):
Signing out is possible if you reload the page.
For devs, the issue is that we implement the signout route as a Nitro server route, and Vue frontend is using NuxtLink, which attempts to do the Vue-based navigation, instead of making a server side call.
Sign out functionalityto [GH-ISSUE #95] Sign out functionality