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