summaryrefslogtreecommitdiffstats
path: root/js/service/item.js
blob: 0dd9b8677a6cbb677b95aadbb3f30d5bb7671302 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/**
 * ownCloud - News
 *
 * This file is licensed under the Affero General Public License version 3 or
 * later. See the COPYING file.
 *
 * @author Bernhard Posselt <dev@bernhard-posselt.com>
 * @copyright Bernhard Posselt 2014
 */
app.factory('Item', function (Model) {
    'use strict';

    var Item = function () {
        Model.call(this, 'id');
    };

    Item.prototype = Object.create(Model.prototype);

    return new Item();
});