Moved isPlexAuthenticated from movie component to userModule.

This commit is contained in:
2020-02-20 14:08:46 +01:00
parent 20b8692c91
commit 3becce2a6c
2 changed files with 8 additions and 1 deletions

View File

@@ -182,6 +182,9 @@ export default {
numberOfTorrentResults: () => {
let numTorrents = store.getters['torrentModule/resultCount']
return numTorrents !== null ? numTorrents + ' results' : null
},
isPlexAuthenticated: () => {
return store.getters['userModule/isPlexAuthenticated']
}
},
methods: {