This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SS.cifraclub.songbooks = (function (window, $) { | |
function _getUserSongbooks() { | |
return $.ajax({ | |
url: SS.api.URL + 'songbook/user/' + SS.ccidbar.user.id + '.json', | |
type: 'get', | |
dataType: 'json' | |
}); | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding:utf-8 -*- | |
import requests | |
from django.core.management.base import BaseCommand | |
from django.conf import settings | |
from palcomp3.website import purges | |
from palcomp3.website.utils import varnish | |
varnish.register(purges.resources) |
NewerOlder