implemented logout and rename login module to auth

This commit is contained in:
Sebastian Sdorra
2018-07-12 11:33:41 +02:00
parent f9ebc26fef
commit e041dae964
8 changed files with 176 additions and 16 deletions

View File

@@ -6,7 +6,7 @@ import { routerReducer, routerMiddleware } from "react-router-redux";
import repositories from "./repositories/modules/repositories";
import users from "./users/modules/users";
import login from "./modules/login";
import auth from "./modules/auth";
import me from "./modules/me";
import type { BrowserHistory } from "history/createBrowserHistory";
@@ -19,7 +19,7 @@ function createReduxStore(history: BrowserHistory) {
router: routerReducer,
repositories,
users,
login,
auth,
me
});