mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-07-05 06:54:59 +02:00
Adding upload permission to users, directory structure readme update
This commit is contained in:
parent
07994d38d5
commit
c884fd6880
12 changed files with 148 additions and 75 deletions
|
@ -33,6 +33,9 @@ export const getters = {
|
|||
},
|
||||
getUserCanDownload: (state) => {
|
||||
return state.user && state.user.permissions ? !!state.user.permissions.download : false
|
||||
},
|
||||
getUserCanUpload: (state) => {
|
||||
return state.user && state.user.permissions ? !!state.user.permissions.upload : false
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue