diff --git a/app/pods/application/template.hbs b/app/pods/application/template.hbs index 5fe3d0d..e31c7fa 100644 --- a/app/pods/application/template.hbs +++ b/app/pods/application/template.hbs @@ -3,23 +3,23 @@ {{site-logo}} {{#if session.isAuthenticated}}
diff --git a/app/pods/components/forms/species-form/template.hbs b/app/pods/components/forms/species-form/template.hbs index 4eaa726..47fcf42 100644 --- a/app/pods/components/forms/species-form/template.hbs +++ b/app/pods/components/forms/species-form/template.hbs @@ -16,7 +16,7 @@ {{#each species.strains as |strain index|}} {{if index ","}} - {{#link-to 'strains.show' strain.id}} + {{#link-to 'protected.strains.show' strain.id}} {{{strain.strainNameMU}}} {{/link-to}} {{/each}} diff --git a/app/pods/components/site-logo/template.hbs b/app/pods/components/site-logo/template.hbs index 4219c12..72e4d5d 100644 --- a/app/pods/components/site-logo/template.hbs +++ b/app/pods/components/site-logo/template.hbs @@ -1,3 +1,3 @@ -{{#link-to 'index' class='logo'}} +{{#link-to 'protected.index' class='logo'}}
- {{#link-to 'species.show' species}} + {{#link-to 'protected.species.show' species}} {{species.speciesName}} {{/link-to}} @@ -23,7 +23,7 @@ |
{{#each species.strains as |strain index|}}
{{if index ","}}
- {{#link-to 'strains.show' strain.id}}
+ {{#link-to 'protected.strains.show' strain.id}}
{{{strain.strainNameMU}}}
{{/link-to}}
{{/each}}
diff --git a/app/pods/species/new/controller.js b/app/pods/protected/species/new/controller.js
similarity index 100%
rename from app/pods/species/new/controller.js
rename to app/pods/protected/species/new/controller.js
diff --git a/app/pods/species/new/route.js b/app/pods/protected/species/new/route.js
similarity index 100%
rename from app/pods/species/new/route.js
rename to app/pods/protected/species/new/route.js
diff --git a/app/pods/species/new/template.hbs b/app/pods/protected/species/new/template.hbs
similarity index 100%
rename from app/pods/species/new/template.hbs
rename to app/pods/protected/species/new/template.hbs
diff --git a/app/pods/species/show/route.js b/app/pods/protected/species/show/route.js
similarity index 100%
rename from app/pods/species/show/route.js
rename to app/pods/protected/species/show/route.js
diff --git a/app/pods/species/show/template.hbs b/app/pods/protected/species/show/template.hbs
similarity index 91%
rename from app/pods/species/show/template.hbs
rename to app/pods/protected/species/show/template.hbs
index 49a83dc..fac3273 100644
--- a/app/pods/species/show/template.hbs
+++ b/app/pods/protected/species/show/template.hbs
@@ -13,7 +13,7 @@
- {{#link-to 'species.edit' model class="button-gray smaller"}} + {{#link-to 'protected.species.edit' model class="button-gray smaller"}} Edit {{/link-to}} {{/if}} diff --git a/app/pods/strains/edit/controller.js b/app/pods/protected/strains/edit/controller.js similarity index 100% rename from app/pods/strains/edit/controller.js rename to app/pods/protected/strains/edit/controller.js diff --git a/app/pods/strains/edit/route.js b/app/pods/protected/strains/edit/route.js similarity index 100% rename from app/pods/strains/edit/route.js rename to app/pods/protected/strains/edit/route.js diff --git a/app/pods/strains/edit/template.hbs b/app/pods/protected/strains/edit/template.hbs similarity index 100% rename from app/pods/strains/edit/template.hbs rename to app/pods/protected/strains/edit/template.hbs diff --git a/app/pods/strains/index/controller.js b/app/pods/protected/strains/index/controller.js similarity index 100% rename from app/pods/strains/index/controller.js rename to app/pods/protected/strains/index/controller.js diff --git a/app/pods/strains/index/route.js b/app/pods/protected/strains/index/route.js similarity index 100% rename from app/pods/strains/index/route.js rename to app/pods/protected/strains/index/route.js diff --git a/app/pods/strains/index/template.hbs b/app/pods/protected/strains/index/template.hbs similarity index 84% rename from app/pods/strains/index/template.hbs rename to app/pods/protected/strains/index/template.hbs index a513167..720e7ad 100644 --- a/app/pods/strains/index/template.hbs +++ b/app/pods/protected/strains/index/template.hbs @@ -14,7 +14,7 @@ {{#each sortedStrains as |row|}}
- {{#link-to 'strains.show' row.id classBinding="data.typeStrain:type-strain"}}
+ {{#link-to 'protected.strains.show' row.id classBinding="data.typeStrain:type-strain"}}
{{row.fullNameMU}}
{{/link-to}}
|
diff --git a/app/pods/strains/new/controller.js b/app/pods/protected/strains/new/controller.js
similarity index 100%
rename from app/pods/strains/new/controller.js
rename to app/pods/protected/strains/new/controller.js
diff --git a/app/pods/strains/new/route.js b/app/pods/protected/strains/new/route.js
similarity index 100%
rename from app/pods/strains/new/route.js
rename to app/pods/protected/strains/new/route.js
diff --git a/app/pods/strains/new/template.hbs b/app/pods/protected/strains/new/template.hbs
similarity index 100%
rename from app/pods/strains/new/template.hbs
rename to app/pods/protected/strains/new/template.hbs
diff --git a/app/pods/strains/show/route.js b/app/pods/protected/strains/show/route.js
similarity index 100%
rename from app/pods/strains/show/route.js
rename to app/pods/protected/strains/show/route.js
diff --git a/app/pods/strains/show/template.hbs b/app/pods/protected/strains/show/template.hbs
similarity index 93%
rename from app/pods/strains/show/template.hbs
rename to app/pods/protected/strains/show/template.hbs
index 01eb5cf..d7997ba 100644
--- a/app/pods/strains/show/template.hbs
+++ b/app/pods/protected/strains/show/template.hbs
@@ -9,7 +9,7 @@
- {{#link-to 'species.edit' model class="button-gray smaller"}} + {{#link-to 'protected.species.edit' model class="button-gray smaller"}} Edit {{/link-to}} {{/if}} diff --git a/app/router.js b/app/router.js index 2720075..c03f534 100644 --- a/app/router.js +++ b/app/router.js @@ -7,22 +7,6 @@ var Router = Ember.Router.extend({ Router.map(function() { this.route('login'); - this.route('about'); - this.route('characteristics'); - this.route('measurements'); - this.route('compare'); - - this.route('species', function() { - this.route('new'); - this.route('show', { path: ':species_id' }); - this.route('edit', { path: ':species_id/edit' }); - }); - - this.route('strains', function() { - this.route('new'); - this.route('show', { path: ':strain_id' }); - this.route('edit', { path: ':strain_id/edit' }); - }); this.route('users', function() { this.route('new', function() { @@ -31,6 +15,27 @@ Router.map(function() { this.route('verify', { path: ':nonce' }); }); }); + + this.route('protected', { path: '/' }, function() { + this.route('about'); + this.route('characteristics'); + this.route('measurements'); + this.route('compare'); + + this.route('species', function() { + this.route('new'); + this.route('show', { path: ':species_id' }); + this.route('edit', { path: ':species_id/edit' }); + }); + + this.route('strains', function() { + this.route('new'); + this.route('show', { path: ':strain_id' }); + this.route('edit', { path: ':strain_id/edit' }); + }); + + }); + }); export default Router; diff --git a/config/environment.js b/config/environment.js index 97172f8..daba50a 100644 --- a/config/environment.js +++ b/config/environment.js @@ -19,6 +19,7 @@ module.exports = function(environment) { session: 'session:custom', authorizer: 'simple-auth-authorizer:token', store: 'simple-auth-session-store:local-storage', + routeAfterAuthentication: 'protected.index', }, 'simple-auth-token': { identificationField: 'email', |