Implemented edition of tags

This commit is contained in:
Alejandro Celaya
2018-08-18 22:59:53 +02:00
parent 878e336ba1
commit d541543ab3
10 changed files with 197 additions and 6 deletions

View File

@@ -9,6 +9,7 @@ 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';
import tagEditReducer from '../tags/reducers/tagEdit';
export default combineReducers({
servers: serversReducer,
@@ -20,4 +21,5 @@ export default combineReducers({
shortUrlTags: shortUrlTagsReducer,
tagsList: tagsListReducer,
tagDelete: tagDeleteReducer,
tagEdit: tagEditReducer,
});