Implemented delete tag behavior

This commit is contained in:
Alejandro Celaya
2018-08-18 16:39:47 +02:00
parent f480e34f67
commit 1dee478234
6 changed files with 129 additions and 21 deletions

View File

@@ -8,6 +8,7 @@ import shortUrlCreationResultReducer from '../short-urls/reducers/shortUrlCreati
import shortUrlVisitsReducer from '../short-urls/reducers/shortUrlVisits';
import shortUrlTagsReducer from '../short-urls/reducers/shortUrlTags';
import tagsListReducer from '../tags/reducers/tagsList';
import tagDeleteReducer from '../tags/reducers/tagDelete';
export default combineReducers({
servers: serversReducer,
@@ -18,4 +19,5 @@ export default combineReducers({
shortUrlVisits: shortUrlVisitsReducer,
shortUrlTags: shortUrlTagsReducer,
tagsList: tagsListReducer,
tagDelete: tagDeleteReducer,
});