X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/c0b0f2e4f2f795e06412db84c77b6b0447815ca2..db2c87fbe29eed8c4bfca47a97c97cee77959d58:/src/views-components/api-token/api-token.tsx diff --git a/src/views-components/api-token/api-token.tsx b/src/views-components/api-token/api-token.tsx index 718d3589..43c55a92 100644 --- a/src/views-components/api-token/api-token.tsx +++ b/src/views-components/api-token/api-token.tsx @@ -5,13 +5,17 @@ import { RouteProps } from "react-router"; import * as React from "react"; import { connect, DispatchProp } from "react-redux"; -import { getUserDetails, saveApiToken } from "~/store/auth/auth-action"; +import { authActions, getUserDetails, saveApiToken } from "~/store/auth/auth-action"; import { getUrlParameter } from "~/common/url"; import { AuthService } from "~/services/auth-service/auth-service"; import { navigateToRootProject } from "~/store/navigation/navigation-action"; +import { User } from "~/models/user"; +import { Config } from "~/common/config"; +import { initSessions } from "~/store/auth/auth-action-session"; interface ApiTokenProps { authService: AuthService; + config: Config; } export const ApiToken = connect()( @@ -20,7 +24,9 @@ export const ApiToken = connect()( const search = this.props.location ? this.props.location.search : ""; const apiToken = getUrlParameter(search, 'api_token'); this.props.dispatch(saveApiToken(apiToken)); - this.props.dispatch(getUserDetails()).finally(() => { + this.props.dispatch(getUserDetails()).then((user: User) => { + this.props.dispatch(initSessions(this.props.authService, this.props.config, user)); + }).finally(() => { this.props.dispatch(navigateToRootProject); }); }