* 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>
23 lines
312 B
TypeScript
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'
|
|
}
|
|
]
|
|
};
|