Move it away from AbstractApp into an auxiliary function. In addition, introduce a new `getServerURL` function which gets the configured server URL and defaults to meet.jit.si as before.
7 lines
136 B
JavaScript
7 lines
136 B
JavaScript
// @flow
|
|
|
|
/**
|
|
* The default server URL to open if no other was specified.
|
|
*/
|
|
export const DEFAULT_SERVER_URL = 'https://meet.jit.si';
|