rimgo/pages/h.ts

14 lines
440 B
TypeScript
Raw Normal View History

2021-10-08 06:45:56 +00:00
export const handleTag = async (request: Hapi.Request, h: Hapi.ResponseToolkit) => {
// https://imgur.com/t/funny
2021-10-08 06:45:56 +00:00
if (!CONFIG.use_api) {
return 'Tag page disabled. Rimgu administrator needs to enable API for this to work.';
}
const tagID = request.params.tagID;
const result = await fetchTagPosts(tagID);
2021-10-08 07:42:13 +00:00
return h.view('posts', {
2021-10-08 06:45:56 +00:00
posts: result.items,
pageTitle: CONFIG.page_title,
tag: result,
util,
});
2022-01-17 20:23:04 +00:00
};