6868_createLogin #2598

Merged
sergiodt merged 20 commits from 6868_createLogin into dev 2024-09-13 09:43:32 +00:00
2 changed files with 1 additions and 5 deletions
Showing only changes of commit ae6963c26d - Show all commits

View File

@ -30,17 +30,14 @@ module.exports = Self => {
} }
}); });
Self.loginApp = async(ctx, android_id, versionApp, nameApp, options) => { Self.handleUser = async(ctx, android_id, versionApp, nameApp, options) => {
const models = Self.app.models; const models = Self.app.models;
const myOptions = {}; const myOptions = {};
if (typeof options == 'object') if (typeof options == 'object')
Object.assign(myOptions, options); Object.assign(myOptions, options);
// const login = await models.Account.login(ctx, user, password, myOptions);
const accessToken = ctx.req.accessToken; const accessToken = ctx.req.accessToken;
let user = await models.VnUser.findById(accessToken.userId); let user = await models.VnUser.findById(accessToken.userId);
console.log(user.id);
const [[{vIsAuthorized, vMessage}]] = const [[{vIsAuthorized, vMessage}]] =
await Self.rawSql('CALL vn.device_checkLogin(?, ?);', await Self.rawSql('CALL vn.device_checkLogin(?, ?);',

View File

@ -10,7 +10,6 @@ module.exports = Self => {
require('../methods/account/logout')(Self); require('../methods/account/logout')(Self);
require('../methods/account/change-password')(Self); require('../methods/account/change-password')(Self);
require('../methods/account/set-password')(Self); require('../methods/account/set-password')(Self);
require('../methods/account/login-app')(Self);
require('../methods/account/handle-user')(Self); require('../methods/account/handle-user')(Self);
Self.setUnverifiedPassword = async(id, pass, options) => { Self.setUnverifiedPassword = async(id, pass, options) => {