summaryrefslogtreecommitdiffstats
path: root/webapp/routes/route_claim.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2017-09-06 23:04:13 -0700
committerChristopher Speller <crspeller@gmail.com>2017-09-06 23:11:58 -0700
commitd8bd57901e33a7057e26e782e295099ffcc0da89 (patch)
treee12dfc8cad42b1576756d19d7fbfd82646a009bf /webapp/routes/route_claim.jsx
parent7bc8e9a08dfde56387f946fdf5086252aa4d0491 (diff)
downloadchat-d8bd57901e33a7057e26e782e295099ffcc0da89.tar.gz
chat-d8bd57901e33a7057e26e782e295099ffcc0da89.tar.bz2
chat-d8bd57901e33a7057e26e782e295099ffcc0da89.zip
Removing webapp
Diffstat (limited to 'webapp/routes/route_claim.jsx')
-rw-r--r--webapp/routes/route_claim.jsx36
1 files changed, 0 insertions, 36 deletions
diff --git a/webapp/routes/route_claim.jsx b/webapp/routes/route_claim.jsx
deleted file mode 100644
index 02dfeb8e8..000000000
--- a/webapp/routes/route_claim.jsx
+++ /dev/null
@@ -1,36 +0,0 @@
-import * as RouteUtils from 'routes/route_utils.jsx';
-
-export default {
- path: 'claim',
- getComponents: (location, callback) => {
- System.import('components/claim/claim_controller.jsx').then(RouteUtils.importComponentSuccess(callback));
- },
- getChildRoutes: RouteUtils.createGetChildComponentsFunction(
- [
- {
- path: 'oauth_to_email',
- getComponents: (location, callback) => {
- System.import('components/claim/components/oauth_to_email.jsx').then(RouteUtils.importComponentSuccess(callback));
- }
- },
- {
- path: 'email_to_oauth',
- getComponents: (location, callback) => {
- System.import('components/claim/components/email_to_oauth.jsx').then(RouteUtils.importComponentSuccess(callback));
- }
- },
- {
- path: 'ldap_to_email',
- getComponents: (location, callback) => {
- System.import('components/claim/components/ldap_to_email.jsx').then(RouteUtils.importComponentSuccess(callback));
- }
- },
- {
- path: 'email_to_ldap',
- getComponents: (location, callback) => {
- System.import('components/claim/components/email_to_ldap.jsx').then(RouteUtils.importComponentSuccess(callback));
- }
- }
- ]
- )
-};