mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 17:26:29 -05:00
Redirect logged-in users from /login to /history
This commit is contained in:
parent
0071c81699
commit
f5a851814a
1 changed files with 10 additions and 0 deletions
|
@ -9,11 +9,14 @@ import {ApplicationState} from "../../../../redux";
|
|||
import {ViaOpenId} from "./auth/via-open id";
|
||||
import "./login.scss";
|
||||
import {ElementSeparator} from "../../../element-separator/element-separator";
|
||||
import {Redirect} from "react-router";
|
||||
import {LoginStatus} from "../../../../redux/user/types";
|
||||
|
||||
const Login: React.FC = () => {
|
||||
useTranslation();
|
||||
const authProviders = useSelector((state: ApplicationState) => state.backendConfig.authProviders);
|
||||
const customAuthNames = useSelector((state: ApplicationState) => state.backendConfig.customAuthNames);
|
||||
const userLoginState = useSelector((state: ApplicationState) => state.user.status);
|
||||
const emailForm = authProviders.email ? <ViaEMail/> : null
|
||||
const ldapForm = authProviders.ldap ? <ViaLdap/> : null
|
||||
const openIdForm = authProviders.openid ? <ViaOpenId/> : null
|
||||
|
@ -28,6 +31,13 @@ const Login: React.FC = () => {
|
|||
return undefined;
|
||||
}
|
||||
}
|
||||
|
||||
if (userLoginState === LoginStatus.ok) {
|
||||
// TODO Redirect to previous page?
|
||||
return (
|
||||
<Redirect to='/history' />
|
||||
)
|
||||
}
|
||||
|
||||
return (
|
||||
<Jumbotron className="bg-dark">
|
||||
|
|
Loading…
Reference in a new issue