mirror of
https://github.com/Readarr/Readarr
synced 2026-03-03 02:53:45 +01:00
7 lines
335 B
JavaScript
7 lines
335 B
JavaScript
import { createAction } from 'redux-actions';
|
|
import * as types from './actionTypes';
|
|
import oAuthActionHandlers from './oAuthActionHandlers';
|
|
|
|
export const startOAuth = oAuthActionHandlers[types.START_OAUTH];
|
|
export const setOAuthValue = createAction(types.SET_OAUTH_VALUE);
|
|
export const resetOAuth = createAction(types.RESET_OAUTH);
|