1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

fix: archive store in folder

This commit is contained in:
Ivar Conradi Østhus 2021-01-06 21:47:39 +01:00
parent 46843aecf1
commit ba79da7a99
5 changed files with 7 additions and 7 deletions

View File

@ -1,6 +1,6 @@
import { connect } from 'react-redux';
import FeatureListComponent from './../feature/list/list-component';
import { fetchArchive, revive } from './../../store/archive-actions';
import { fetchArchive, revive } from './../../store/archive/actions';
import { updateSettingForGroup } from './../../store/settings/actions';
import { mapStateToPropsConfigurable } from '../feature/list/list-container';

View File

@ -1,5 +1,5 @@
import { connect } from 'react-redux';
import { fetchArchive, revive } from './../../store/archive-actions';
import { fetchArchive, revive } from './../../store/archive/actions';
import ViewToggleComponent from './../feature/view/view-component';
import { hasPermission } from '../../permissions';

View File

@ -1,5 +1,5 @@
import api from '../data/archive-api';
import { dispatchAndThrow } from './util';
import api from '../../data/archive-api';
import { dispatchAndThrow } from '../util';
export const REVIVE_TOGGLE = 'REVIVE_TOGGLE';
export const RECEIVE_ARCHIVE = 'RECEIVE_ARCHIVE';

View File

@ -1,6 +1,6 @@
import { List, Map as $Map } from 'immutable';
import { RECEIVE_ARCHIVE, REVIVE_TOGGLE } from './archive-actions';
import { USER_LOGOUT, USER_LOGIN } from './user/actions';
import { RECEIVE_ARCHIVE, REVIVE_TOGGLE } from './actions';
import { USER_LOGOUT, USER_LOGIN } from '../user/actions';
function getInitState() {
return new $Map({ list: new List() });

View File

@ -4,7 +4,7 @@ import featureTypes from './feature-type';
import featureMetrics from './feature-metrics-store';
import strategies from './strategy';
import history from './history-store'; // eslint-disable-line
import archive from './archive-store';
import archive from './archive';
import error from './error-store';
import clientInstances from './client-instance-store';
import settings from './settings';