mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-12-02 13:14:23 +01:00
23 lines
441 B
JavaScript
Vendored
23 lines
441 B
JavaScript
Vendored
import { defineStore } from 'pinia'
|
|
// import { useApi } from '@/api/useAPI.js'
|
|
|
|
// const api = useApi()
|
|
|
|
export const useUserStore = defineStore({
|
|
id: 'user',
|
|
|
|
state: () => {
|
|
return {
|
|
name: 'guest',
|
|
preferences: window.userPreferences,
|
|
isAdmin: false,
|
|
}
|
|
},
|
|
|
|
actions: {
|
|
updatePreference(preference) {
|
|
this.preferences = { ...this.state.preferences, ...preference }
|
|
},
|
|
},
|
|
})
|