salix/modules/account/back/models/account.js

11 lines
385 B
JavaScript
Raw Normal View History

2023-01-31 13:57:24 +00:00
module.exports = Self => {
require('../methods/account/sync')(Self);
require('../methods/account/sync-by-id')(Self);
require('../methods/account/sync-all')(Self);
require('../methods/account/login')(Self);
require('../methods/account/logout')(Self);
require('../methods/account/change-password')(Self);
require('../methods/account/set-password')(Self);
};