aboutsummaryrefslogtreecommitdiffstats
path: root/src/components
diff options
context:
space:
mode:
authorLibravatar André Oliveira <37463445+SpecialAro@users.noreply.github.com>2022-06-23 12:25:27 +0100
committerLibravatar GitHub <noreply@github.com>2022-06-23 12:25:27 +0100
commit23c46e84af2e37d011648c77abcffc64a11cf1f8 (patch)
treefa23bd5cf6c8a8035dff8fcaeb8c6bb8b0caf96b /src/components
parentFix issue with incorrect GH workflow [skip ci] (diff)
downloadferdium-app-23c46e84af2e37d011648c77abcffc64a11cf1f8.tar.gz
ferdium-app-23c46e84af2e37d011648c77abcffc64a11cf1f8.tar.zst
ferdium-app-23c46e84af2e37d011648c77abcffc64a11cf1f8.zip
Workaroud for in-app Password Recovery (#342)
* Change funtion name [skip ci] * Workaround #312
Diffstat (limited to 'src/components')
-rw-r--r--src/components/auth/Login.js11
-rw-r--r--src/components/auth/Signup.js6
2 files changed, 11 insertions, 6 deletions
diff --git a/src/components/auth/Login.js b/src/components/auth/Login.js
index 74b9fef47..3de576ca6 100644
--- a/src/components/auth/Login.js
+++ b/src/components/auth/Login.js
@@ -6,6 +6,7 @@ import { defineMessages, injectIntl } from 'react-intl';
6 6
7import { LIVE_FRANZ_API } from '../../config'; 7import { LIVE_FRANZ_API } from '../../config';
8import { API_VERSION } from '../../environment-remote'; 8import { API_VERSION } from '../../environment-remote';
9import { serverBase } from '../../api/apiBase'; // TODO: Remove this line after fixing password recovery in-app
9import Form from '../../lib/Form'; 10import Form from '../../lib/Form';
10import { required, email } from '../../helpers/validation-helpers'; 11import { required, email } from '../../helpers/validation-helpers';
11import Input from '../ui/Input'; 12import Input from '../ui/Input';
@@ -69,7 +70,7 @@ class Login extends Component {
69 isTokenExpired: PropTypes.bool.isRequired, 70 isTokenExpired: PropTypes.bool.isRequired,
70 isServerLogout: PropTypes.bool.isRequired, 71 isServerLogout: PropTypes.bool.isRequired,
71 signupRoute: PropTypes.string.isRequired, 72 signupRoute: PropTypes.string.isRequired,
72 passwordRoute: PropTypes.string.isRequired, 73 // passwordRoute: PropTypes.string.isRequired, // TODO: Uncomment this line after fixing password recovery in-app
73 error: globalErrorPropType.isRequired, 74 error: globalErrorPropType.isRequired,
74 }; 75 };
75 76
@@ -111,7 +112,7 @@ class Login extends Component {
111 isTokenExpired, 112 isTokenExpired,
112 isServerLogout, 113 isServerLogout,
113 signupRoute, 114 signupRoute,
114 passwordRoute, 115 // passwordRoute, // TODO: Uncomment this line after fixing password recovery in-app
115 error, 116 error,
116 } = this.props; 117 } = this.props;
117 118
@@ -177,7 +178,11 @@ class Login extends Component {
177 <Link to={signupRoute}> 178 <Link to={signupRoute}>
178 {intl.formatMessage(messages.signupLink)} 179 {intl.formatMessage(messages.signupLink)}
179 </Link> 180 </Link>
180 <Link to={passwordRoute}> 181 <Link
182 // to={passwordRoute} // TODO: Uncomment this line after fixing password recovery in-app
183 to={`${serverBase()}/user/forgot`} // TODO: Remove this line after fixing password recovery in-app
184 target='_blank' // TODO: Remove this line after fixing password recovery in-app
185 >
181 {intl.formatMessage(messages.passwordLink)} 186 {intl.formatMessage(messages.passwordLink)}
182 </Link> 187 </Link>
183 </div> 188 </div>
diff --git a/src/components/auth/Signup.js b/src/components/auth/Signup.js
index 05b6576fa..eaa68f918 100644
--- a/src/components/auth/Signup.js
+++ b/src/components/auth/Signup.js
@@ -11,7 +11,7 @@ import Button from '../ui/button';
11import Link from '../ui/Link'; 11import Link from '../ui/Link';
12 12
13import { globalError as globalErrorPropType } from '../../prop-types'; 13import { globalError as globalErrorPropType } from '../../prop-types';
14import { termsBase } from '../../api/apiBase'; 14import { serverBase } from '../../api/apiBase';
15import { H1 } from '../ui/headline'; 15import { H1 } from '../ui/headline';
16 16
17const messages = defineMessages({ 17const messages = defineMessages({
@@ -160,7 +160,7 @@ class Signup extends Component {
160 {intl.formatMessage(messages.legalInfo)} 160 {intl.formatMessage(messages.legalInfo)}
161 <br /> 161 <br />
162 <Link 162 <Link
163 to={`${termsBase()}/terms`} 163 to={`${serverBase()}/terms`}
164 target="_blank" 164 target="_blank"
165 className="link" 165 className="link"
166 > 166 >
@@ -168,7 +168,7 @@ class Signup extends Component {
168 </Link> 168 </Link>
169 &nbsp;&amp;&nbsp; 169 &nbsp;&amp;&nbsp;
170 <Link 170 <Link
171 to={`${termsBase()}/privacy`} 171 to={`${serverBase()}/privacy`}
172 target="_blank" 172 target="_blank"
173 className="link" 173 className="link"
174 > 174 >