aboutsummaryrefslogtreecommitdiffstats
path: root/static/scripts/rebuild.js
blob: 8fd0e2e064bfb9989a1faefa3fe20d7d92b632b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
$(() => {
    $('#confirm').click(() => {
        $.ajax({
            type: 'GET',
            url: `/special/rebuild/confirm`,
            success: () => {
                $('#response').html('<div class=\'box\'>Successfully rebuilt page directory.</div>');
            },
            error: () => {
                $('#response').html('<div class=\'box\'>Could not rebuild page directory. Try again later.</div>');
            }
        });
    });
});