123456789101112131415161718192021222324252627282930 |
- var Unibase;
- (function (Unibase) {
- let Platform;
- (function (Platform) {
- let Common;
- (function (Common) {
- let Components;
- (function (Components) {
- class ConnectedTenants extends Unibase.Platform.Core.BaseComponent {
- init() {
- }
- refreshConnectedTenants() {
- var instance = this;
- instance.fileCacheHelper.loadJsFile('platform/common/managers/commonmanager.js', function () {
- Unibase.Platform.Common.Managers.CommonManager.Instance().refreshConnectedTenants().then(function (response) {
- MessageHelper.Instance().showSuccess(response, '');
- });
- });
- }
- static Instance() {
- if (this._instance === undefined)
- this._instance = new ConnectedTenants();
- return this._instance;
- }
- }
- Components.ConnectedTenants = ConnectedTenants;
- })(Components = Common.Components || (Common.Components = {}));
- })(Common = Platform.Common || (Platform.Common = {}));
- })(Platform = Unibase.Platform || (Unibase.Platform = {}));
- })(Unibase || (Unibase = {}));
|