mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-16 13:36:33 +00:00
17 lines
438 B
TypeScript
17 lines
438 B
TypeScript
import useConfig from '~/compositions/useConfig';
|
|
import useUserConfig from '~/compositions/useUserConfig';
|
|
|
|
export default () =>
|
|
({
|
|
isAuthenticated: !!useConfig().user,
|
|
|
|
user: useConfig().user,
|
|
|
|
authenticate(url?: string) {
|
|
if (url) {
|
|
const config = useUserConfig();
|
|
config.setUserConfig('redirectUrl', url);
|
|
}
|
|
window.location.href = `${useConfig().rootPath}/login`;
|
|
},
|
|
}) as const;
|