mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-20 03:31:13 +10:00
feat: partial user platform support + statusMessage -> message
This commit is contained in:
@ -8,7 +8,7 @@ export default defineClientEventHandler(async (h3, { fetchUser }) => {
|
||||
if (!id)
|
||||
throw createError({
|
||||
statusCode: 400,
|
||||
statusMessage: "ID required in route params",
|
||||
message: "ID required in route params",
|
||||
});
|
||||
|
||||
// Verify collection exists and user owns it
|
||||
@ -17,13 +17,13 @@ export default defineClientEventHandler(async (h3, { fetchUser }) => {
|
||||
if (!collection)
|
||||
throw createError({
|
||||
statusCode: 404,
|
||||
statusMessage: "Collection not found",
|
||||
message: "Collection not found",
|
||||
});
|
||||
|
||||
if (collection.userId !== user.id)
|
||||
throw createError({
|
||||
statusCode: 403,
|
||||
statusMessage: "Not authorized to delete this collection",
|
||||
message: "Not authorized to delete this collection",
|
||||
});
|
||||
|
||||
await userLibraryManager.deleteCollection(id);
|
||||
|
||||
Reference in New Issue
Block a user