summaryrefslogtreecommitdiffstats
path: root/coffee/services/foldermodel.coffee
blob: 46f3b5cfab7651e11545f5d54629813fe44881e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
###
# ownCloud
#
# @author Bernhard Posselt
# Copyright (c) 2012 - Bernhard Posselt <nukeawhale@gmail.com>
#
# This file is licensed under the Affero General Public License version 3 or
# later.
#
# See the COPYING-README file
#
###

angular.module('News').factory '_FolderModel', ['Model', (Model, $rootScope) ->

	class FolderModel extends Model

		constructor: ->
			super()


	return FolderModel
]