(provider, token, options = {})
| 1146 | } |
| 1147 | |
| 1148 | confirmBindAIYouth (provider, token, options = {}) { |
| 1149 | options.url = '/auth/bind-aiyouth' |
| 1150 | options.type = 'POST' |
| 1151 | if (options.data == null) { options.data = {} } |
| 1152 | options.data.token = token |
| 1153 | options.data.provider = provider |
| 1154 | return this.fetch(options) |
| 1155 | } |
| 1156 | |
| 1157 | changePassword (userId, password, options = {}) { |
| 1158 | options.url = '/auth/change-password' |
no test coverage detected