mirror of
https://github.com/healthchecks/healthchecks.git
synced 2024-11-21 15:17:57 +00:00
9 lines
213 B
Python
9 lines
213 B
Python
from __future__ import annotations
|
|
|
|
from django.conf import settings
|
|
from django.http import HttpRequest
|
|
|
|
|
|
def payments(request: HttpRequest) -> dict[str, bool]:
|
|
return {"show_pricing": settings.USE_PAYMENTS}
|