add user manager

This commit is contained in:
Aleksey Chichenkov 2019-03-18 15:27:25 +03:00
parent ab6ad01441
commit b558da6aa5
3 changed files with 218 additions and 9 deletions

View file

@ -24,30 +24,35 @@ function Platform() {
/**
*
* @public
* @function core_translations
* @name core_translations
* @memberof Platform
* @returns {CoreTranslations}
*/
this.core_translations = new CoreTranslations();
/**
*
* @public
* @function core_config
* @name core_config
* @memberof Platform
* @returns {CoreConfig}
*/
this.core_config = new CoreConfig();
/**
*
* @public
* @function datasource_manager
* @name datasource_manager
* @memberof Platform
* @returns {Datasource}
*/
this.datasource_manager = new Datasource();
/**
*
* @public
* @name user_manager
* @memberof Platform
*/
this.user_manager = new UserManager();
/**
*
* @public