strapi-miniprogram-auth-weilanwl
Version:
Helps you to easily create WeChat MiniProgram authentication available for your user.
37 lines • 945 B
JavaScript
module.exports = {
"kind": "singleType",
info: {
"displayName": "WeChat Credentials",
"singularName": "wx-credential",
"pluralName": "wx-credentials",
"description": "Stores WeChat Mini program credentials",
"tableName": "wechat_auth_creds",
},
options: {
"privateAttributes": ["id", "created_at"],
"populateCreatorFields": true,
"draftAndPublish": true
},
pluginOptions: {
"content-manager": {
"visible": false
},
"content-type-builder": {
"visible": false
}
},
attributes: {
"app_id": {
"type": "string",
"configurable": true,
"required": true,
"default": null
},
"app_secret": {
"type": "string",
"configurable": true,
"required": true,
"default": null
}
}
}