| 123456789101112131415161718192021222324252627282930 |
- const {
- dbCmd,
- userCollection
- } = require('../../common/constants')
- /**
- * 移除用户登录授权
- * @tutorial https://uniapp.dcloud.net.cn/uniCloud/uni-id-pages.html#remove-authorized-app
- * @param {Object} params
- * @param {String} params.uid 用户id
- * @param {String} params.appId 取消授权的应用的AppId
- * @returns
- */
- module.exports = async function (params = {}) {
- const schema = {
- uid: 'string',
- appId: 'string'
- }
- this.middleware.validate(params, schema)
- const {
- uid,
- appId
- } = params
- await userCollection.doc(uid).update({
- dcloud_appid: dbCmd.pull(appId)
- })
- return {
- errCode: 0
- }
- }
|