Completed
Pull Request — master (#41)
by Alejandro
03:20 queued 37s
created

src/reducers/index.js

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 28
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Test Coverage

Coverage 7.69%

Importance

Changes 0
Metric Value
cc 0
wmc 0
eloc 26
nc 1
mnd 0
bc 0
fnc 0
dl 0
loc 28
ccs 1
cts 13
cp 0.0769
crap 0
bpm 0
cpm 0
noi 0
c 0
b 0
f 0
1
import { combineReducers } from 'redux';
2
import serversReducer from '../servers/reducers/server';
3
import selectedServerReducer from '../servers/reducers/selectedServer';
4
import shortUrlsListReducer from '../short-urls/reducers/shortUrlsList';
5
import shortUrlsListParamsReducer from '../short-urls/reducers/shortUrlsListParams';
6
import shortUrlCreationReducer from '../short-urls/reducers/shortUrlCreation';
7
import shortUrlDeletionReducer from '../short-urls/reducers/shortUrlDeletion';
8
import shortUrlTagsReducer from '../short-urls/reducers/shortUrlTags';
9
import shortUrlVisitsReducer from '../visits/reducers/shortUrlVisits';
10
import shortUrlDetailReducer from '../visits/reducers/shortUrlDetail';
11
import tagsListReducer from '../tags/reducers/tagsList';
12
import tagDeleteReducer from '../tags/reducers/tagDelete';
13 4
import tagEditReducer from '../tags/reducers/tagEdit';
14
15
export default combineReducers({
16
  servers: serversReducer,
17
  selectedServer: selectedServerReducer,
18
  shortUrlsList: shortUrlsListReducer,
19
  shortUrlsListParams: shortUrlsListParamsReducer,
20
  shortUrlCreationResult: shortUrlCreationReducer,
21
  shortUrlDeletion: shortUrlDeletionReducer,
22
  shortUrlTags: shortUrlTagsReducer,
23
  shortUrlVisits: shortUrlVisitsReducer,
24
  shortUrlDetail: shortUrlDetailReducer,
25
  tagsList: tagsListReducer,
26
  tagDelete: tagDeleteReducer,
27
  tagEdit: tagEditReducer,
28
});
29