diff --git a/client/components/app/Appbar.vue b/client/components/app/Appbar.vue
index 0bd4ba9c..c4625253 100644
--- a/client/components/app/Appbar.vue
+++ b/client/components/app/Appbar.vue
@@ -15,7 +15,14 @@
settings
-
+
+
+ {{ username }}
+
+
+ person
+
+
@@ -35,17 +42,6 @@
export default {
data() {
return {
- menuItems: [
- {
- value: 'account',
- text: 'Account',
- to: '/account'
- },
- {
- value: 'logout',
- text: 'Logout'
- }
- ],
processingBatchDelete: false
}
},
@@ -83,20 +79,6 @@ export default {
this.$router.push('/')
}
},
- logout() {
- this.$axios.$post('/logout').catch((error) => {
- console.error(error)
- })
- if (localStorage.getItem('token')) {
- localStorage.removeItem('token')
- }
- this.$router.push('/login')
- },
- menuAction(action) {
- if (action === 'logout') {
- this.logout()
- }
- },
cancelSelectionMode() {
if (this.processingBatchDelete) return
this.$store.commit('setSelectedAudiobooks', [])
diff --git a/client/components/app/BookShelf.vue b/client/components/app/BookShelf.vue
index 6a7a96a6..7337f040 100644
--- a/client/components/app/BookShelf.vue
+++ b/client/components/app/BookShelf.vue
@@ -24,6 +24,10 @@
+