summaryrefslogtreecommitdiff
path: root/aggregator/utils.py
blob: 309ca2da8dc57d008a0b01342fb69fcc13e470b6 (plain)
1
2
3
4
5
6
7
8
9
10
from django.conf import settings


def push_credentials(hub_url):
    """
    Callback for django_push to get a hub's credentials.

    We always use superfeedr so this is easy.
    """
    return tuple(settings.SUPERFEEDR_CREDS)