blob: bb66f21dda7e7c73b21f7997e4cdf1961f419ee7 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
from django.template import RequestContext
from pydis_site import GIT_SHA
def git_sha_processor(_: RequestContext) -> dict:
"""Expose the git SHA for this repo to all views."""
return {'git_sha': GIT_SHA}
|