mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-07 08:39:03 +05:30
17 lines
370 B
JavaScript
17 lines
370 B
JavaScript
|
import AbstractState from './AbstractState';
|
||
|
import LoginState from './LoginState';
|
||
|
|
||
|
export default class ForgotPasswordState extends AbstractState {
|
||
|
enter(context) {
|
||
|
context.navigate('/forgot-password');
|
||
|
}
|
||
|
|
||
|
goBack(context) {
|
||
|
context.setState(new LoginState());
|
||
|
}
|
||
|
|
||
|
reject(context) {
|
||
|
context.navigate('/send-message');
|
||
|
}
|
||
|
}
|