tachybase_todo/packages/plugin-file-manager/src/collections/storages.ts
Junyi 8bdbd804f0
feature: add file manager base architecture (#44)
* feature: add file manager base architecture

* 修改 action 注册方式

* put upload action and middleware together

* bugfix

Co-authored-by: chenos <chenlinxh@gmail.com>
2020-12-19 08:45:19 +08:00

39 lines
759 B
TypeScript

import { TableOptions } from '@nocobase/database';
export default {
name: 'storages',
title: '存储引擎',
internal: true,
fields: [
{
comment: '标识名称,用于用户记忆',
type: 'string',
name: 'name',
},
{
comment: '类型标识,如 local/ali-oss 等',
type: 'string',
name: 'type',
defaultValue: 'local'
},
{
comment: '配置项',
type: 'jsonb',
name: 'options',
defaultValue: {}
},
{
comment: '存储相对路径模板',
type: 'string',
name: 'path',
defaultValue: ''
},
{
comment: '访问地址前缀',
type: 'string',
name: 'baseUrl',
defaultValue: ''
},
]
} as TableOptions;