mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-12 08:19:06 +05:30
8 lines
177 B
JavaScript
8 lines
177 B
JavaScript
|
import AbstractState from './AbstractState';
|
||
|
|
||
|
export default class CompleteState extends AbstractState {
|
||
|
enter(context) {
|
||
|
context.navigate('/oauth/finish');
|
||
|
}
|
||
|
}
|