mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 23:16:03 +00:00
26 lines
499 B
TypeScript
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;
|