summaryrefslogtreecommitdiffstats
path: root/js/controller/ContentController.js
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-05-20 17:01:59 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-05-20 17:01:59 +0200
commit5a7b1e0c36c2dd564f44568de766118b07be49ad (patch)
tree23b9f80bb4509dd51948c3851660f5fa3754031d /js/controller/ContentController.js
parentb5d5b2b22a2b4aabd4c9bb5c8b89aae10facc735 (diff)
rename model to resource
Diffstat (limited to 'js/controller/ContentController.js')
-rw-r--r--js/controller/ContentController.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/controller/ContentController.js b/js/controller/ContentController.js
index 51309a93d..8e4632f7e 100644
--- a/js/controller/ContentController.js
+++ b/js/controller/ContentController.js
@@ -7,17 +7,17 @@
* @author Bernhard Posselt <dev@bernhard-posselt.com>
* @copyright Bernhard Posselt 2014
*/
-app.controller('ContentController', function (Publisher, Feed, Item, data) {
+app.controller('ContentController', function (Publisher, FeedResource, ItemResource, data) {
'use strict';
// distribute data to models based on key
Publisher.publishAll(data);
this.getItems = function () {
- return Item.getAll();
+ return ItemResource.getAll();
};
this.getFeeds = function () {
- return Feed.getAll();
+ return FeedResource.getAll();
};
}); \ No newline at end of file