b05f843790
Introduce new environment variable that lets you control account signups ENABLE_ACCOUNT_SIGNUP :( true | false | api_only ) Fixes: #406 Co-authored-by: Pranav Raj S <pranavrajs@gmail.com>
49 lines
1.3 KiB
JavaScript
49 lines
1.3 KiB
JavaScript
import Auth from './Auth';
|
|
import Confirmation from './Confirmation';
|
|
import Signup from './Signup';
|
|
import PasswordEdit from './PasswordEdit';
|
|
import ResetPassword from './ResetPassword';
|
|
import { frontendURL } from '../../helper/URLHelper';
|
|
|
|
export default {
|
|
routes: [
|
|
{
|
|
path: frontendURL('auth'),
|
|
name: 'auth',
|
|
component: Auth,
|
|
children: [
|
|
{
|
|
path: 'confirmation',
|
|
name: 'auth_confirmation',
|
|
component: Confirmation,
|
|
props: route => ({
|
|
config: route.query.config,
|
|
confirmationToken: route.query.confirmation_token,
|
|
redirectUrl: route.query.route_url,
|
|
}),
|
|
},
|
|
{
|
|
path: 'password/edit',
|
|
name: 'auth_password_edit',
|
|
component: PasswordEdit,
|
|
props: route => ({
|
|
config: route.query.config,
|
|
resetPasswordToken: route.query.reset_password_token,
|
|
redirectUrl: route.query.route_url,
|
|
}),
|
|
},
|
|
{
|
|
path: 'signup',
|
|
name: 'auth_signup',
|
|
component: Signup,
|
|
meta: { requireSignupEnabled: true },
|
|
},
|
|
{
|
|
path: 'reset/password',
|
|
name: 'auth_reset_password',
|
|
component: ResetPassword,
|
|
},
|
|
],
|
|
},
|
|
],
|
|
};
|