mirror of
https://github.com/plankanban/planka.git
synced 2025-08-02 03:55:26 +02:00
65 lines
1.2 KiB
JavaScript
65 lines
1.2 KiB
JavaScript
/*!
|
|
* Copyright (c) 2024 PLANKA Software GmbH
|
|
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
|
*/
|
|
|
|
import ActionTypes from '../constants/ActionTypes';
|
|
|
|
const initializeLogin = (config) => ({
|
|
type: ActionTypes.LOGIN_INITIALIZE,
|
|
payload: {
|
|
config,
|
|
},
|
|
});
|
|
|
|
const authenticate = (data) => ({
|
|
type: ActionTypes.AUTHENTICATE,
|
|
payload: {
|
|
data,
|
|
},
|
|
});
|
|
|
|
authenticate.success = (accessToken) => ({
|
|
type: ActionTypes.AUTHENTICATE__SUCCESS,
|
|
payload: {
|
|
accessToken,
|
|
},
|
|
});
|
|
|
|
authenticate.failure = (error) => ({
|
|
type: ActionTypes.AUTHENTICATE__FAILURE,
|
|
payload: {
|
|
error,
|
|
},
|
|
});
|
|
|
|
const authenticateWithOidc = () => ({
|
|
type: ActionTypes.WITH_OIDC_AUTHENTICATE,
|
|
payload: {},
|
|
});
|
|
|
|
authenticateWithOidc.success = (accessToken) => ({
|
|
type: ActionTypes.WITH_OIDC_AUTHENTICATE__SUCCESS,
|
|
payload: {
|
|
accessToken,
|
|
},
|
|
});
|
|
|
|
authenticateWithOidc.failure = (error) => ({
|
|
type: ActionTypes.WITH_OIDC_AUTHENTICATE__FAILURE,
|
|
payload: {
|
|
error,
|
|
},
|
|
});
|
|
|
|
const clearAuthenticateError = () => ({
|
|
type: ActionTypes.AUTHENTICATE_ERROR_CLEAR,
|
|
payload: {},
|
|
});
|
|
|
|
export default {
|
|
initializeLogin,
|
|
authenticate,
|
|
authenticateWithOidc,
|
|
clearAuthenticateError,
|
|
};
|