Share chat url

Modal for video owner (and instance's moderators) that allows to generate a link to the chat. So you can - for example - obtain the url to use for OBS integration.
WIP
This commit is contained in:
John Livingston
2021-12-14 15:41:34 +01:00
parent 148b28ef84
commit 566681150b
8 changed files with 323 additions and 68 deletions

View File

@ -0,0 +1,11 @@
async function shareChatUrl ({ peertubeHelpers }: RegisterOptions): Promise<void> {
peertubeHelpers.showModal({
title: 'TODO',
content: '<p>TODO</p>',
close: true
})
}
export {
shareChatUrl
}