Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | 1x 1x 4x 4x 4x 4x 3x 1x 1x 7x 7x 7x 7x 7x 6x 1x | // CRM Settings Routes
import { Hono } from "hono";
import type { Dal } from "../../../dal";
import type { Services } from "../../../services";
import { success, handleError } from "../../../lib/response";
import { requireProAccess } from "../../../middleware";
type Env = {
Bindings: CloudflareBindings;
Variables: {
user: { id: string; name: string; email: string } | null;
session: unknown;
dal: Dal;
services: Services;
proId: string;
proRole: string;
};
};
const settings = new Hono<Env>();
// Get CRM settings
settings.get("/:proId/crm/settings", requireProAccess, async (c) => {
try {
const services = c.get("services");
const proId = c.get("proId");
const data = await services.crmSettings.getSettings(proId);
return success(c, data);
} catch (err) {
return handleError(c, err);
}
});
// Update CRM settings
settings.patch("/:proId/crm/settings", requireProAccess, async (c) => {
try {
const services = c.get("services");
const proId = c.get("proId");
const body = await c.req.json<{
kanbanHeaderDisplay?: "count" | "value";
autoArchiveEnabled?: boolean;
autoArchiveWonDays?: number;
autoArchiveLostDays?: number;
}>();
const data = await services.crmSettings.updateSettings(proId, body);
return success(c, data);
} catch (err) {
return handleError(c, err);
}
});
export default settings;
|