aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/context_processors.py
blob: ab5a4168b748bd0d43ff68276467128ab41b30cc (plain) (blame)
1
2
3
4
5
6
7
8
from django.template import RequestContext

from pydis_site.utils import get_git_sha


def git_sha_processor(_: RequestContext) -> dict:
    """Expose the git SHA for this repo to all views."""
    return {'git_sha': get_git_sha()}