mirror of
https://github.com/healthchecks/healthchecks.git
synced 2025-03-14 20:32:51 +00:00
8 lines
213 B
Python
8 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}
|