mirror of
https://github.com/koel/koel
synced 2024-11-14 16:37:28 +00:00
12 lines
281 B
TypeScript
12 lines
281 B
TypeScript
import { computed, toRef } from 'vue'
|
|
import { userStore } from '@/stores'
|
|
|
|
export const useAuthorization = () => {
|
|
const currentUser = toRef(userStore.state, 'current')
|
|
const isAdmin = computed(() => currentUser.value?.is_admin)
|
|
|
|
return {
|
|
currentUser,
|
|
isAdmin
|
|
}
|
|
}
|