summaryrefslogtreecommitdiffstats
path: root/js/app/controllers/feedcontroller.coffee
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-03-23 16:08:39 +0100
committerBernhard Posselt <nukeawhale@gmail.com>2013-03-23 16:08:39 +0100
commitd65fa8090469286396342ff2299b58b79d83f8f3 (patch)
treec1364cc456f556205d8e14f729b38ba745b3ba06 /js/app/controllers/feedcontroller.coffee
parent1f670b3180cfd71b8085c4ef0fe414a6a78e7d44 (diff)
fixed dicontainer and added basic controllers
Diffstat (limited to 'js/app/controllers/feedcontroller.coffee')
-rw-r--r--js/app/controllers/feedcontroller.coffee31
1 files changed, 31 insertions, 0 deletions
diff --git a/js/app/controllers/feedcontroller.coffee b/js/app/controllers/feedcontroller.coffee
new file mode 100644
index 000000000..a641a8a9c
--- /dev/null
+++ b/js/app/controllers/feedcontroller.coffee
@@ -0,0 +1,31 @@
+###
+
+ownCloud - News
+
+@author Bernhard Posselt
+@copyright 2012 Bernhard Posselt nukeawhale@gmail.com
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+License as published by the Free Software Foundation; either
+version 3 of the License, or any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+
+You should have received a copy of the GNU Affero General Public
+License along with this library. If not, see <http://www.gnu.org/licenses/>.
+
+###
+
+
+angular.module('News').factory '_FeedController', ->
+
+ class FeedController
+
+ constructor: (@$scope, @folderModel, @feedModel) ->
+
+
+ return FeedController \ No newline at end of file