tachybase_todo/packages/plugin-system-settings/src/collections/systemSettings.ts

31 lines
492 B
TypeScript
Raw Normal View History

2022-02-11 18:13:14 +08:00
import { defineCollection } from '@nocobase/database';
2021-08-13 23:14:07 +08:00
2022-02-11 18:13:14 +08:00
export default defineCollection({
name: 'systemSettings',
2021-08-13 23:14:07 +08:00
fields: [
{
type: 'string',
name: 'title',
},
2021-08-17 00:15:53 +08:00
{
type: 'boolean',
name: 'showLogoOnly',
},
2021-11-29 20:59:31 +08:00
{
type: 'boolean',
name: 'allowSignUp',
defaultValue: true,
2021-11-29 20:59:31 +08:00
},
2021-08-13 23:14:07 +08:00
{
type: 'belongsTo',
name: 'logo',
target: 'attachments',
},
{
type: 'string',
name: 'appLang',
},
2021-08-13 23:14:07 +08:00
],
2022-02-11 18:13:14 +08:00
});