mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-14 20:03:52 +00:00
2fa397548a
* feat/navigate upgrade react router * feat/navigate migrate to react router 6 * feat/navigate style modal * feat/navigate create endpoints for app settings * feat/navigate protect editor with pin * feat/navigate apply dynamic routing draft * feat/navigate upgrade relevant packages * feat/navigate restructure directory and add tests * feat/navigate test aliases validation * feat/navigate validate aliases before sending * feat/navigate create data endpoint * feat/navigate config: prettier * feat/navigate invalidate empty strings * feat/navigate create endpoints * feat/navigate parse on import * feat/navigate navigate to alias * feat/navigate user help and sample data * feat/navigate refact aliases modal * feat/navigate refact settings style * feat/navigate update sample db * feat/navigate link is relative to hostname * feat/navigate navigate to first match * feat/navigate update readme and version bump * feat/navigate config: create shared module * feat/navigate config: cheat module install * feat/navigate fix tests * feat/navigate run tests in pull request * Update ontime_cy.yml
14 lines
541 B
JavaScript
14 lines
541 B
JavaScript
// Exported viewer links
|
|
const speakerLink = 'http://localhost:4001/speaker';
|
|
const smLink = 'http://localhost:4001/sm';
|
|
const publicLink = 'http://localhost:4001/public';
|
|
const pipLink = 'http://localhost:4001/pip';
|
|
const studioLink = 'http://localhost:4001/studio';
|
|
|
|
export const viewerLinks = [
|
|
{ link: speakerLink, label: 'Speaker Screen' },
|
|
{ link: smLink, label: 'Backstage Screen' },
|
|
{ link: publicLink, label: 'Public Screen' },
|
|
{ link: pipLink, label: 'Picture in Picture' },
|
|
{ link: studioLink, label: 'Studio Clock' }
|
|
]; |