26 lines
889 B
TypeScript
26 lines
889 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/company/:companyId */
|
|
export default createRoute(
|
|
"get",
|
|
["/credentials/company/:companyId"],
|
|
|
|
async (c) => {
|
|
const companyCredentials = await credentials.fetchByCompany(
|
|
c.req.param("companyId"),
|
|
);
|
|
|
|
const response = apiResponse.successful(
|
|
"Company Credentials Fetched Successfully!",
|
|
companyCredentials.map((cred) => cred.toJson()),
|
|
);
|
|
return c.json(response, response.status as ContentfulStatusCode);
|
|
},
|
|
authMiddleware({ permissions: ["credential.fetch.many"] }),
|
|
);
|