Add link to community forums
This commit is contained in:
@@ -25,6 +25,12 @@
|
||||
</v-list-item-icon>
|
||||
<v-list-item-title>Dashboard</v-list-item-title>
|
||||
</v-list-item>
|
||||
<v-list-item link :to="{ name: 'forum' }">
|
||||
<v-list-item-icon>
|
||||
<v-icon>mdi-account-group</v-icon>
|
||||
</v-list-item-icon>
|
||||
<v-list-item-title>Community</v-list-item-title>
|
||||
</v-list-item>
|
||||
<v-list-item link :to="{ name: 'help' }">
|
||||
<v-list-item-icon>
|
||||
<v-icon>mdi-frequently-asked-questions</v-icon>
|
||||
|
||||
25
pages/forum.vue
Normal file
25
pages/forum.vue
Normal file
@@ -0,0 +1,25 @@
|
||||
<template>
|
||||
<v-container>
|
||||
<v-row>
|
||||
<v-col cols="12" class="text-center">
|
||||
<blockquote class="blockquote">
|
||||
<p>
|
||||
Über den Link "Community" gelangen die Studierenden zu einem externen Forum,<br/>
|
||||
in dem sie sich über Kursinhalte und die Web App austauschen können.
|
||||
</p>
|
||||
<p>Denkbar wäre auch eine Integration mit Course Feeds®.</p>
|
||||
</blockquote>
|
||||
</v-col>
|
||||
</v-row>
|
||||
</v-container>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'ForumPage',
|
||||
layout ({ $auth }) {
|
||||
// Ref: https://firebase.google.com/docs/reference/js/v8/firebase.auth.Auth#currentuser
|
||||
return $auth.currentUser.emailVerified ? 'default' : 'unverified'
|
||||
},
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user