complete system message

This commit is contained in:
2025-08-11 11:30:35 +03:30
parent 36fa5fc26f
commit 88f89662c6
34 changed files with 6702 additions and 7025 deletions

View File

@@ -1,6 +1,6 @@
"use client";
import DataTableWithAuth from "@/core/components/DataTableWithAuth";
import { GET_ROLE_LIST } from "@/core/utils/routes";
import { ROLE_SERVICE } from "@/core/utils/routes";
import { Box, Typography } from "@mui/material";
import { useMemo } from "react";
import Toolbar from "./Toolbar";
@@ -75,7 +75,7 @@ const DataTable = () => {
need_filter={true}
columns={columns}
sorting={[{ id: "id", desc: true }]}
table_url={GET_ROLE_LIST}
table_url={ROLE_SERVICE}
page_name={"rolesPage"}
table_name={"rolesList"}
TableToolbar={Toolbar}