mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-09 23:49:27 +08:00
7 lines
187 B
TypeScript
7 lines
187 B
TypeScript
import { useSystemSettings } from '../system-settings';
|
|
|
|
export const useAdminSchemaUid = () => {
|
|
const ctx = useSystemSettings();
|
|
return ctx?.data?.data?.options?.adminSchemaUid;
|
|
};
|