nocobase/packages/plugin-notifications/src/collections/notification_services.ts
2021-12-07 19:24:26 +08:00

26 lines
499 B
TypeScript

import { CollectionOptions } from '@nocobase/database';
import { NotificationService } from '../models';
export default {
name: 'notification_services',
model: NotificationService,
title: '通知服务',
fields: [
{
title: '类型',
type: 'string',
name: 'type',
},
{
title: '服务名称',
type: 'string',
name: 'title',
},
{
title: '配置信息',
type: 'json',
name: 'options',
},
]
} as CollectionOptions;