mirror of
https://github.com/koel/koel
synced 2024-12-20 09:33:23 +00:00
10 lines
270 B
TypeScript
10 lines
270 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 }
|
||
|
}
|