i found a thread that I should implment the PostsRoute but I get the error futher. Has anybody an idea?
App = Ember.Application.create({
LOG_TRANSITIONS: true
});
App.Router.map(function() {
// put your routes here
//this.resource("projects", function() {});
this.resource('posts', function() {});
this.resource('projects');
});
App.PostsRoute = Ember.Route.extend({});