mirror of
https://github.com/koel/koel
synced 2024-12-19 09:03:07 +00:00
12 lines
282 B
TypeScript
12 lines
282 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,
|
|
}
|
|
}
|