mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-16 12:16:09 +03:00
c614a652cb
Closes #2423 - Created the apps route to fetch apps from server - Created controller for a single app - Modified the template of the apps page to use this controller - Created the Apps model - Created AppAdapter to use the FixtureAdapter for Ember Data
10 lines
207 B
JavaScript
10 lines
207 B
JavaScript
import AuthenticatedRoute from 'ghost/routes/authenticated';
|
|
|
|
var AppsRoute = AuthenticatedRoute.extend({
|
|
model: function () {
|
|
return this.store.find('app');
|
|
}
|
|
});
|
|
|
|
export default AppsRoute;
|