Updates to the admin to reflect new stream keys and admin password split

This commit is contained in:
Gabe Kangas
2022-11-28 20:22:26 -08:00
parent c4dc802941
commit d503c8a2e0
8 changed files with 205 additions and 17 deletions

View File

@@ -26,7 +26,7 @@ export const Offline: FC<OfflineProps> = ({ logs = [], config }) => {
const serverStatusData = useContext(ServerStatusContext);
const { serverConfig } = serverStatusData || {};
const { streamKey, rtmpServerPort } = serverConfig;
const { rtmpServerPort } = serverConfig;
const instanceUrl = global.window?.location.hostname || '';
let rtmpURL;
@@ -58,11 +58,11 @@ export const Offline: FC<OfflineProps> = ({ logs = [], config }) => {
</Paragraph>
)}
<Text strong className="stream-info-label">
Stream Key:
Streaming Keys:
</Text>
<Text strong className="stream-info-box">
<Link href="/admin/config/streamkeys"> View </Link>
</Text>
<Paragraph className="stream-info-box" copyable={{ text: streamKey }}>
*********************
</Paragraph>
</div>
</div>
),