Completed
Push — master ( e4d488...d7a2df )
by Sander
30s
created

js/ui/popup/factories/storage.js (1 issue)

Severity
1
/* global API */
2
3
/**
4
 * Nextcloud - passman
5
 *
6
 * @copyright Copyright (c) 2016, Sander Brand ([email protected])
7
 * @copyright Copyright (c) 2016, Marcos Zuriaga Miguel ([email protected])
8
 * @license GNU AGPL version 3 or any later version
9
 *
10
 * This program is free software: you can redistribute it and/or modify
11
 * it under the terms of the GNU Affero General Public License as
12
 * published by the Free Software Foundation, either version 3 of the
13
 * License, or (at your option) any later version.
14
 *
15
 * This program is distributed in the hope that it will be useful,
16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 * GNU Affero General Public License for more details.
19
 *
20
 * You should have received a copy of the GNU Affero General Public License
21
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22
 *
23
 */
24
25
(function () {
26
    'use strict';
27
    /**
28
     * @ngdoc service
29
     * @name passmanApp.CacheService
30
     * @description
31
     * # CacheService
32
     * Service in the passmanApp.
33
     */
34
    angular.module('passmanExtension')
35
        .factory('Settings', ['$q', function ($q) {
0 ignored issues
show
The parameter $q is not used and could be removed.

This check looks for parameters in functions that are not used in the function body and are not followed by other parameters which are used inside the function.

Loading history...
36
            var storage = new API.Storage();
37
            var settings = {};
38
            settings.set = function (key, value) {
39
                storage.set(key, value);
40
                settings[key] = value;
41
42
            };
43
            settings.setAll = function (_settings) {
44
                storage.set('settings', _settings);
45
            };
46
47
            settings.getSettings = function (callback) {
48
                storage.get('settings').then(function(keyValue) {
49
                    callback(keyValue);
50
                }).error(function () {
51
                    callback(undefined);
52
                });
53
            };
54
55
            return settings;
56
        }]);
57
}());
58
59