Merge branch 'release/v1.0.4'

This commit is contained in:
Robert Einsle 2021-10-08 14:42:31 +02:00
commit 6060e5c2b0
4 changed files with 10 additions and 1 deletions

View File

View File

View File

@ -0,0 +1,9 @@
from django.core.management.base import BaseCommand, CommandError
from billard.tasks import process_location_data
class Command(BaseCommand):
help = 'Process location data objects'
def handle(self, *args, **options):
process_location_data

View File

@ -163,7 +163,7 @@ EMAIL_PORT = 25
URL_LOCATION_PROCESSOR = 'http://127.0.0.1:8000/billard/process_locationdata'
PRODUCT_INFO = 'CAROM'
PRODUCT_VERSION = 'v 1.0.3'
PRODUCT_VERSION = 'v 1.0.4'
INTERNAL_IPS = ['127.0.0.1']