change url style

peertube
Namekuji 2023-01-26 17:43:04 -05:00
rodzic 1a6b838c9c
commit 2047c3b691
3 zmienionych plików z 8 dodań i 3 usunięć

Wyświetl plik

@ -27,7 +27,7 @@ processing: "Processing now...<br />Keep this window open!"
lostWarning: "Unsaved data will be lost if you leave the page, are you sure?"
staticLink:
title: "Your Audon Link"
hint: "Other can join to your room via this personal link while you're hosting."
hint: "Other participants can join to your room via this personal link while you're hosting."
form:
title: "Title"
titleRequired: "Room title required"

Wyświetl plik

@ -86,7 +86,12 @@ export default {
<v-alert :icon="mdiLinkVariant" :title="$t('staticLink.title')">
<div class="my-1">
<h4 style="word-break: break-all">
<a :href="donStore.myStaticLink" @click.prevent="">{{ donStore.myStaticLink }}</a>
<a
:href="donStore.myStaticLink"
@click.prevent=""
class="text-white"
>{{ donStore.myStaticLink }}</a
>
</h4>
</div>
<p>{{ $t("staticLink.hint") }}</p>

Wyświetl plik

@ -127,7 +127,7 @@ func livekitWebhookHandler(c echo.Context) error {
messages := []string{
header,
fmt.Sprintf(":udon: %s\n🎙 https://%s/r/%s", room.Title, mainConfig.LocalDomain, room.RoomID),
fmt.Sprintf(":udon: %s\n🎙 https://%s/u/@%s", room.Title, mainConfig.LocalDomain, room.Host.Webfinger),
}
if room.Description != "" {
messages = append(messages, room.Description)