Refactor code structure for improved readability and maintainability
This commit is contained in:
@@ -1,23 +1,23 @@
|
||||
import { getAppById } from '~/data/apps'
|
||||
import { getAppById } from "~/data/apps";
|
||||
|
||||
export default defineEventHandler((event) => {
|
||||
const id = getRouterParam(event, 'id')
|
||||
const id = getRouterParam(event, "id");
|
||||
|
||||
if (!id) {
|
||||
throw createError({
|
||||
statusCode: 400,
|
||||
message: 'App ID is required',
|
||||
})
|
||||
message: "App ID is required",
|
||||
});
|
||||
}
|
||||
|
||||
const app = getAppById(id)
|
||||
const app = getAppById(id);
|
||||
|
||||
if (!app) {
|
||||
throw createError({
|
||||
statusCode: 404,
|
||||
message: 'App not found',
|
||||
})
|
||||
message: "App not found",
|
||||
});
|
||||
}
|
||||
|
||||
return app
|
||||
})
|
||||
return app;
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user