forked from 00dani/lemoncurry
Start implementing reply context! It's ugly and doesn't actually link the original post yet but you *can* see the original post's author and content :3
This commit is contained in:
parent
fb9e9a24c9
commit
e72a6b01f0
7 changed files with 78 additions and 13 deletions
|
@ -25,6 +25,10 @@ class DjangoCache(BaseCache):
|
|||
else:
|
||||
django_cache.set(key, value)
|
||||
|
||||
def delete(self, url):
|
||||
key = self.key(url)
|
||||
django_cache.delete(key)
|
||||
|
||||
|
||||
req = CacheControl(
|
||||
requests.Session(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue