1234567891011 |
- // Copyright (C) 2012-2023 Zammad Foundation, https://zammad-foundation.org/
- import { useAuthenticationStore } from '@shared/stores/authentication'
- import { initializePiniaStore } from './components/renderComponent'
- export const mockAuthentication = (authenticated: boolean) => {
- initializePiniaStore()
- const authentication = useAuthenticationStore()
- authentication.authenticated = authenticated
- }
|