[client] Hide channels from guest view

This commit is contained in:
Laura Hausmann 2023-11-03 22:54:18 +01:00
parent 2166ea019d
commit be02bc78ad
Signed by: zotan
GPG key ID: D044E84C5BE01605
4 changed files with 3 additions and 10 deletions

View file

@ -85,7 +85,6 @@
<nav class="nav">
<MkA to="/announcements">{{ i18n.ts.announcements }}</MkA>
<MkA to="/explore">{{ i18n.ts.explore }}</MkA>
<MkA to="/channels">{{ i18n.ts.channel }}</MkA>
<MkA to="/featured">{{ i18n.ts.featured }}</MkA>
</nav>
</div>

View file

@ -415,10 +415,12 @@ export const routes = [
{
path: "/channels/:channelId",
component: page(() => import("./pages/channel.vue")),
loginRequired: true,
},
{
path: "/channels",
component: page(() => import("./pages/channels.vue")),
loginRequired: true,
},
{
path: "/registry/keys/system/:path(*)?",

View file

@ -45,10 +45,6 @@
><i class="ph-compass ph-bold ph-lg icon"></i
>{{ i18n.ts.explore }}</MkA
>
<MkA to="/channels" class="link" active-class="active"
><i class="ph-television ph-bold ph-lg icon"></i
>{{ i18n.ts.channel }}</MkA
>
<MkA to="/pages" class="link" active-class="active"
><i class="ph-file-text ph-bold ph-lg icon"></i
>{{ i18n.ts.pages }}</MkA

View file

@ -18,10 +18,6 @@
><i class="ph-compass ph-bold ph-lg icon"></i
>{{ i18n.ts.explore }}</MkA
>
<MkA to="/channels" class="link" active-class="active"
><i class="ph-television ph-bold ph-lg icon"></i
>{{ i18n.ts.channel }}</MkA
>
<MkA to="/pages" class="link" active-class="active"
><i class="ph-file-text ph-bold ph-lg icon"></i
>{{ i18n.ts.pages }}</MkA
@ -198,7 +194,7 @@ export default defineComponent({
&.page {
border-bottom-color: var(--accent);
}
&._button {
text-decoration: underline;
text-decoration-color: transparent;