* fix(auth): Route should have specific targets * fix(signup): Redirection should be to signup Closes #16945 * feat(redirect): All fallback redirects to signin * fix: send back to originating route * fix(server,secrets): Specify profile field for LinkedIn provider. * fix(profile): Add route to react profile page
8 lines
152 B
JavaScript
8 lines
152 B
JavaScript
import { types } from './redux';
|
|
|
|
export { default } from './Profile.jsx';
|
|
|
|
export const routes = {
|
|
[types.onRouteProfile]: '/portfolio/:username'
|
|
};
|