add user manager
This commit is contained in:
parent
ab6ad01441
commit
b558da6aa5
3 changed files with 218 additions and 9 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue