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
745 B
TypeScript
23 lines
745 B
TypeScript
"use client";
|
|
|
|
import { createExperienceListPage } from "@/modules/experience/components/ExperienceListCrudPage";
|
|
import { experienceApi } from "@/modules/experience/services/experience-api";
|
|
|
|
export const SurveyResponsesPage = createExperienceListPage({
|
|
title: "پاسخهای نظرسنجی",
|
|
breadcrumb: "پاسخهای نظرسنجی",
|
|
resourceKey: "surveyResponses",
|
|
permission: "experience.surveys.view",
|
|
api: experienceApi.surveyResponses,
|
|
columns: [
|
|
{ key: "code", header: "کد" },
|
|
{ key: "name", header: "نام" },
|
|
{ key: "status", header: "وضعیت", type: "status" },
|
|
{ key: "created_at", header: "ایجاد", type: "datetime" },
|
|
],
|
|
readOnly: true,
|
|
|
|
});
|
|
|
|
export default SurveyResponsesPage;
|