mirror of
https://github.com/healthchecks/healthchecks.git
synced 2025-03-14 20:32:51 +00:00
11 lines
277 B
Python
11 lines
277 B
Python
from __future__ import annotations
|
|
|
|
from django.conf import settings
|
|
from django.http import HttpRequest
|
|
|
|
|
|
def branding(request: HttpRequest) -> dict[str, str | None]:
|
|
return {
|
|
"site_name": settings.SITE_NAME,
|
|
"site_logo_url": settings.SITE_LOGO_URL,
|
|
}
|