summaryrefslogtreecommitdiffstats
path: root/js/controller/NavigationController.js
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-05-23 13:26:01 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-05-23 13:26:01 +0200
commit4fa9c6d6cfc24b848bc8bb1526ef8ef50f046cb3 (patch)
treee5f16813ed976e8cc640bfb800d84141568b9489 /js/controller/NavigationController.js
parentf27198da9dd3e6c04f2787f2bb4ef3bea3b00b55 (diff)
add missing controller methods bodies
Diffstat (limited to 'js/controller/NavigationController.js')
-rw-r--r--js/controller/NavigationController.js37
1 files changed, 37 insertions, 0 deletions
diff --git a/js/controller/NavigationController.js b/js/controller/NavigationController.js
index 292f98110..299d433da 100644
--- a/js/controller/NavigationController.js
+++ b/js/controller/NavigationController.js
@@ -37,4 +37,41 @@ function (FeedResource, FolderResource, ItemResource) {
FeedResource.markRead();
};
+ // TBD
+ this.createFeed = () => {
+ console.log('TBD');
+ };
+
+ this.createFolder = () => {
+ console.log('TBD');
+ };
+
+ this.renameFeed = () => {
+ console.log('TBD');
+ };
+
+ this.renameFolder = () => {
+ console.log('TBD');
+ };
+
+ this.deleteFeed = () => {
+ console.log('TBD');
+ };
+
+ this.deleteFolder = () => {
+ console.log('TBD');
+ };
+
+ this.moveFeed = () => {
+ console.log('TBD');
+ };
+
+ this.isActive = () => {
+ console.log('TBD');
+ };
+
+ this.isVisible = () => {
+ console.log('TBD');
+ };
+
}); \ No newline at end of file