New data model classes, ffmpeg-kit, jackson json deserializer, add permission

This commit is contained in:
advplyr 2022-03-28 19:53:53 -05:00
parent 461733854a
commit 4fc70cd3dd
30 changed files with 9058 additions and 9642 deletions

View file

@ -1,5 +1,5 @@
import Server from '../Server'
export default function ({ store }, inject) {
inject('server', new Server(store))
export default function ({ store, $axios }, inject) {
inject('server', new Server(store, $axios))
}