Add delete account.
Some checks are pending
Build and Push Docker Image / build-and-push (push) Waiting to run

This commit is contained in:
yuanhau 2025-06-09 22:34:42 +08:00
parent 629d033702
commit bd3a81dfbc
2 changed files with 11 additions and 19 deletions

View file

@ -0,0 +1,6 @@
export default defineEventHandler(async (event) => {
const userToken = getCookie(event, "token");
return {
token: userToken,
};
});