This commit is contained in:
kolaente 2020-11-01 17:34:37 +01:00
parent ed93848b34
commit 93bc3b5c3c
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 0 additions and 18 deletions

View File

@ -27,7 +27,6 @@ import router from './router'
import {mapState} from 'vuex'
import authTypes from './models/authTypes'
import Rights from './models/rights.json'
import Notification from './components/misc/notification'
import {CURRENT_LIST, IS_FULLPAGE, KEYBOARD_SHORTCUTS_ACTIVE, MENU_ACTIVE, ONLINE} from './store/mutation-types'
@ -96,11 +95,6 @@ export default {
this.$router.push({name: 'home'})
}
// Hide the menu by default on mobile
if (window.innerWidth < 770) {
this.$store.commit(MENU_ACTIVE, false)
}
// Try renewing the token every time vikunja is loaded initially
// (When opening the browser the focus event is not fired)
this.$store.dispatch('auth/renewToken')
@ -135,20 +129,8 @@ export default {
},
computed: mapState({
userInfo: state => state.auth.info,
userAvatar: state => state.auth.avatarUrl,
userAuthenticated: state => state.auth.authenticated,
motd: state => state.config.motd,
online: ONLINE,
fullpage: IS_FULLPAGE,
namespaces(state) {
return state.namespaces.namespaces.filter(n => !n.isArchived)
},
currentList: CURRENT_LIST,
background: 'background',
imprintUrl: state => state.config.legal.imprintUrl,
privacyPolicyUrl: state => state.config.legal.privacyPolicyUrl,
canWriteCurrentList: state => state.currentList.maxRight > Rights.READ,
menuActive: MENU_ACTIVE,
keyboardShortcutsActive: KEYBOARD_SHORTCUTS_ACTIVE,
}),
methods: {