ref: Refactoring

This commit is contained in:
Maksim Eltyshev
2023-10-19 16:05:34 +02:00
parent 743f2956c8
commit 40c04c35ff
23 changed files with 96 additions and 91 deletions

View File

@@ -7,8 +7,8 @@ const authenticate = (data) => ({
},
});
const authenticateWithOidc = () => ({
type: EntryActionTypes.WITH_OIDC_AUTHENTICATE,
const authenticateUsingOidc = () => ({
type: EntryActionTypes.USING_OIDC_AUTHENTICATE,
payload: {},
});
@@ -19,6 +19,6 @@ const clearAuthenticateError = () => ({
export default {
authenticate,
authenticateWithOidc,
authenticateUsingOidc,
clearAuthenticateError,
};