| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- import RtmClient from 'assets/js/rtm-client.js';
- export class CONFIG {
- // For Developemet version
- public static domainUrl: string = "https://hyper-m.cygnusa.in/";
- public static _url: string = CONFIG.domainUrl+"_api/web/en_us/";
- //Common variables//
- public static _loggedIn: boolean;
- public static _user_mobile: any='';
- public static _active_url:any='';
- public static forgot_cont:boolean = false;
- public static forgot_user:any;
- public static forgot_mobile_no:any;
- public static configyearval:any='';
- public static configmonthval:any='';
- public static configtempval:any='';
- public static selecteddsename:any='';
- public static selecteddsecity:any='';
- public static page_change:boolean;
- public static am_page_change:boolean;
-
- // messages
- public static enter_new_password: string = "Please fill the new password";
- public static image360Sources:any=[];
-
- public static rtcobj = {
- client: null,
- joined: false,
- published: false,
- localStream: null,
- screenStream:null,
- remoteStreams: [],
- params: {},
- role : 'host',
- isPresentSomeOne : false,
- isScreenshare : false
- };
- public static share_enable = {
- "canPresent": 6,
- "date": '',
- "id": 'All',
- "isRequesPresent": false,
- "isRequesProfile": false,
- "isRequest": false,
- "isResponse": true,
- "isResponsePresent": true,
- "isResponseProfile": false,
- "message": "",
- "name": '',
- "profile": ''
- }
- public static share_disable = {
- "canPresent": 7,
- "date": '',
- "id": 'All',
- "isRequesPresent": false,
- "isRequesProfile": false,
- "isRequest": false,
- "isResponse": true,
- "isResponsePresent": true,
- "isResponseProfile": false,
- "message": "",
- "name": '',
- "profile": ''
- }
- public static rtm = new RtmClient();
- constructor() { }
- }
|