summaryrefslogtreecommitdiffstats
path: root/webapp/routes/route_mfa.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/routes/route_mfa.jsx')
-rw-r--r--webapp/routes/route_mfa.jsx24
1 files changed, 0 insertions, 24 deletions
diff --git a/webapp/routes/route_mfa.jsx b/webapp/routes/route_mfa.jsx
deleted file mode 100644
index 517d3802e..000000000
--- a/webapp/routes/route_mfa.jsx
+++ /dev/null
@@ -1,24 +0,0 @@
-import * as RouteUtils from 'routes/route_utils.jsx';
-
-export default {
- path: 'mfa',
- getComponents: (location, callback) => {
- System.import('components/mfa/mfa_controller.jsx').then(RouteUtils.importComponentSuccess(callback));
- },
- getChildRoutes: RouteUtils.createGetChildComponentsFunction(
- [
- {
- path: 'setup',
- getComponents: (location, callback) => {
- System.import('components/mfa/components/setup.jsx').then(RouteUtils.importComponentSuccess(callback));
- }
- },
- {
- path: 'confirm',
- getComponents: (location, callback) => {
- System.import('components/mfa/components/confirm.jsx').then(RouteUtils.importComponentSuccess(callback));
- }
- }
- ]
- )
-};