Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bruteforcelog.js « javascripts « Login « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 443f9efc8ff6bcfac84ba3ac31b2456a839ebe28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*!
 * Matomo - free/libre analytics platform
 *
 * @link https://matomo.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */
(function ($) {

    window.bruteForceLog = {
        unblockAllIps: function () {
            piwikHelper.modalConfirm('#confirmUnblockAllIps', {yes: function () {
                var ajaxRequest = new ajaxHelper();
                ajaxRequest.addParams({
                    module: 'API',
                    method: 'Login.unblockBruteForceIPs',
                }, 'get');
                ajaxRequest.setCallback(
                    function (response) {
                        piwikHelper.reload();
                    }
                );
                ajaxRequest.send();
            }});
        }
    };
}(jQuery));