tachybase_todo/packages/plugins/verification/src/collections/verifications_providers.ts
Junyi 7e6a394f73
feat(plugin-verification): add plugin-verification and phone for users (#722)
* feat(plugin-verification): add plugin-verification and phone for users

* feat(plugin-verification): add env example

* fix(plugin-verification): fix locales

* fix(plugin-verification): remove sending comment

* fix(plugin-verification): fix i18n

* refactor(plugin-verification): move invalid error message to action

* fix(plugin-verification): add field migration

* chore(plugin-verification): update packages version

* test(plugin-verification): temp remove new package dependency

* refactor(plugin-verification): make sms authentication configurable in system settings

* fix: smsAuthEnabled

* feat: update preset-nocobase

Co-authored-by: chenos <chenlinxh@gmail.com>
2022-08-20 18:06:12 +08:00

23 lines
312 B
TypeScript

export default {
name: 'verifications_providers',
fields: [
{
type: 'string',
name: 'id',
primaryKey: true
},
{
type: 'string',
name: 'title',
},
{
type: 'string',
name: 'type'
},
{
type: 'jsonb',
name: 'options'
}
]
};