Last active
August 29, 2015 14:22
-
-
Save shenst1/280afff7c38d90286867 to your computer and use it in GitHub Desktop.
Uncaught Error: More context objects were passed than there are dynamic segments for the route: dataset.index
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
this.route('organization', { path: 'organizations/:organization_id' }, function() { | |
this.route('edit'); | |
}); | |
this.route('datasets', { path: 'organizations/:organization_id/datasets'}, function() { | |
this.route('new'); | |
}); | |
this.route('dataset', { path: 'organizations/:organization_id/datasets/:dataset_id'}, function() { | |
this.route('edit'); | |
}); | |
this.route('types', { path: 'organizations/:organization_id/datasets/:dataset_id/types'}, function() { | |
this.route('new'); | |
}); | |
this.route('type', { path: 'organizations/:organization_id/datasets/:dataset_id/types/:type_id'}, function() { | |
this.route('edit'); | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment