koel/resources/assets/js/composables/useAuthorization.ts

10 lines
270 B
TypeScript
Raw Normal View History

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 }
}