Unify commercial runtime ownership across backend and frontend so platform, experience, and hospitality modules use the shared commercial source of truth. Co-authored-by: Cursor <cursoragent@cursor.com>
23 lines
736 B
TypeScript
23 lines
736 B
TypeScript
"use client";
|
|
|
|
import { createExperienceListPage } from "@/modules/experience/components/ExperienceListCrudPage";
|
|
import { experienceApi } from "@/modules/experience/services/experience-api";
|
|
|
|
export const SiteThemeBindingsPage = createExperienceListPage({
|
|
title: "اتصال تم سایت",
|
|
breadcrumb: "اتصال تم سایت",
|
|
resourceKey: "siteThemeBindings",
|
|
permission: "experience.themes.view",
|
|
api: experienceApi.siteThemeBindings,
|
|
columns: [
|
|
{ key: "code", header: "کد" },
|
|
{ key: "name", header: "نام" },
|
|
{ key: "status", header: "وضعیت", type: "status" },
|
|
{ key: "created_at", header: "ایجاد", type: "datetime" },
|
|
],
|
|
readOnly: true,
|
|
|
|
});
|
|
|
|
export default SiteThemeBindingsPage;
|