24 lines
780 B
TypeScript
24 lines
780 B
TypeScript
import { Hono } from "hono/tiny";
|
|
import { createRoute } from "../../modules/api-utils/createRoute";
|
|
import { credentials } from "../../managers/credentials";
|
|
import { apiResponse } from "../../modules/api-utils/apiResponse";
|
|
import { ContentfulStatusCode } from "hono/utils/http-status";
|
|
import { authMiddleware } from "../middleware/authorization";
|
|
|
|
/* /v1/credential/:id */
|
|
export default createRoute(
|
|
"get",
|
|
["/credentials/:id"],
|
|
|
|
async (c) => {
|
|
const credential = await credentials.fetch(c.req.param("id"));
|
|
|
|
const response = apiResponse.successful(
|
|
"Credential Fetched Successfully!",
|
|
credential.toJson(),
|
|
);
|
|
return c.json(response, response.status as ContentfulStatusCode);
|
|
},
|
|
authMiddleware({ permissions: ["credential.fetch"] }),
|
|
);
|