mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-04 21:19:27 +08:00
* feat: environments plugin * feat: improve code * fix: improve code * feat: improve code * refactor: package description * feat: bulk import * fix: remove * refactor: file manager support environment variables * refactor: file manager support environment variables * refactor: map manager support environment variables * refactor: support environment variables * refactor: support environment variables * refactor: support delete environment variables * fix: bug * refactor: workflow support environment variables * refactor: email environment variables * refactor: support bulk import * refactor: support bulk import * refactor: support bulk import * refactor: support bulk import * refactor: code improve * feat: env * chore: update * feat: environment * fix: bug * fix: acl snippet * fix: acl snippets * chore: map manager * refactor: support line break * refactor: support password * chore: environment variables * fix: bug * fix: bug * chore: enviroment variables * chore: system settings * fix: improve code * feat: verification * feat: map * feat: file-manager * feat: notification * fix: bug * feat: workflow * fix: improve code * fix: bug * feat: data-source * feat: auth * fix: error * fix: bug * refactor: description * refactor: locale * refactor: locale * refactor: locale * refactor: code improve * refactor: locale * refactor: locale * style: style improve * fix: error * fix: bug * fix: bug * refactor: environment * fix: ellipsis * refactor: password * fix: bug * fix: bug * fix: bug * fix: bug * fix: bug * chore: test * fix: cache * fix: mysql dialect options * refactor: email config form * fix: bug * fix: bug * fix: authenticator.dataValues parse * fix: include undefined * fix: json * fix: json parse * chore: enviromentProvider * fix: acl * fix: rowKey * fix: update ProviderOptions.tsx * feat: get app instance * fix: bug * fix: text * fix: build error * fix: error * chore: migration rules options * chore: migration rules * refactor: code improve * feat: env v2 * chore: environment varibales * chore: environment serve * fix: getVariables * feat: improve code * fix: bug * chore: collection options for migration * chore: tree collection options * chore: migration rules * chore: migration rules * chore: env api * chore: env api * fix: optionsKeysNotAllowedInEnv * fix: required true * fix: improve code * fix: app refresh * fix: remove db.import * fix: type error * fix: map * refactor: locale improve * refactor: tx-cos * fix: undefined * refactor: code improve * chore: use bookworm * fix: npm add user * fix: npm login * fix: npm adduser * fix: npm adduser * fix: expect * fix: expect * fix: environmentVariables * refactor: support bulk delete & filter * refactor: locale improve * feat: filter * refactor: useGlobalVariable * fix: scope * fix: bug * fix: optionsKeysNotAllowedInEnv * fix: test error * fix: test * fix: test * feat: improve code --------- Co-authored-by: chenos <chenlinxh@gmail.com> Co-authored-by: Chareice <chareice@live.com>
106 lines
2.3 KiB
TypeScript
106 lines
2.3 KiB
TypeScript
/**
|
|
* This file is part of the NocoBase (R) project.
|
|
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
* Authors: NocoBase Team.
|
|
*
|
|
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
*/
|
|
|
|
import type { CollectionOptions } from '@nocobase/database';
|
|
import { generateNTemplate } from '../locale';
|
|
|
|
export default {
|
|
dumpRules: {
|
|
group: 'user',
|
|
},
|
|
migrationRules: ['schema-only', 'skip'],
|
|
shared: true,
|
|
name: 'apiKeys',
|
|
sortable: 'sort',
|
|
createdBy: true,
|
|
updatedAt: false,
|
|
updatedBy: false,
|
|
logging: true,
|
|
fields: [
|
|
{
|
|
name: 'id',
|
|
type: 'bigInt',
|
|
autoIncrement: true,
|
|
primaryKey: true,
|
|
allowNull: false,
|
|
interface: 'id',
|
|
},
|
|
{
|
|
type: 'string',
|
|
name: 'name',
|
|
interface: 'input',
|
|
uiSchema: {
|
|
type: 'string',
|
|
title: '{{t("name")}}',
|
|
'x-component': 'Input',
|
|
},
|
|
},
|
|
{
|
|
interface: 'obo',
|
|
type: 'belongsTo',
|
|
name: 'role',
|
|
target: 'roles',
|
|
foreignKey: 'roleName',
|
|
uiSchema: {
|
|
type: 'object',
|
|
title: '{{t("Roles")}}',
|
|
'x-component': 'Select',
|
|
'x-component-props': {
|
|
fieldNames: {
|
|
label: 'title',
|
|
value: 'name',
|
|
},
|
|
objectValue: true,
|
|
options: '{{ currentRoles }}',
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: 'expiresIn',
|
|
type: 'string',
|
|
uiSchema: {
|
|
type: 'string',
|
|
title: generateNTemplate('Expires'),
|
|
'x-component': 'ExpiresSelect',
|
|
enum: [
|
|
{
|
|
label: generateNTemplate('1 Day'),
|
|
value: '1d',
|
|
},
|
|
{
|
|
label: generateNTemplate('7 Days'),
|
|
value: '7d',
|
|
},
|
|
{
|
|
label: generateNTemplate('30 Days'),
|
|
value: '30d',
|
|
},
|
|
{
|
|
label: generateNTemplate('90 Days'),
|
|
value: '90d',
|
|
},
|
|
{
|
|
label: generateNTemplate('Custom'),
|
|
value: 'custom',
|
|
},
|
|
{
|
|
label: generateNTemplate('Never'),
|
|
value: 'never',
|
|
},
|
|
],
|
|
},
|
|
},
|
|
{
|
|
name: 'token',
|
|
type: 'string',
|
|
hidden: true,
|
|
},
|
|
],
|
|
} as CollectionOptions;
|