From 41e56fb420bbb73ec3fc775252b4b9329cee2d60 Mon Sep 17 00:00:00 2001 From: MihajloPi - YU4MPI Date: Sat, 7 Sep 2024 01:37:47 +0200 Subject: [PATCH] Ooops... Forgot to add Meteor enhancements in PHP (#1065) * Editing SatDump config file + additional logic I've added `meteor_daytime_enhancements` and `meteor_nighttime_enhancements` to the `settings.yml` file and additional logic in the `Capture.php` file to include all enhancements listed for creation for Meteor M2-X. * Ooops... * Ooops... Forgot to add Meteor enhancements in PHP --- ansible/roles/webserver/templates/Config.php.j2 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ansible/roles/webserver/templates/Config.php.j2 b/ansible/roles/webserver/templates/Config.php.j2 index c3c7bd4b7..eac1743dc 100644 --- a/ansible/roles/webserver/templates/Config.php.j2 +++ b/ansible/roles/webserver/templates/Config.php.j2 @@ -51,6 +51,8 @@ class Config { # which enhancements to display for day/night const NOAA_DAY_ENHANCEMENTS = '{{ noaa_daytime_enhancements }}'; const NOAA_NIGHT_ENHANCEMENTS = '{{ noaa_nighttime_enhancements }}'; + const METEOR_DAY_ENHANCEMENTS = '{{ meteor_daytime_enhancements }}'; + const METEOR_NIGHT_ENHANCEMENTS = '{{ meteor_nighttime_enhancements }}'; # admin endpoint auth const LOCK_ADMIN = '{{ lock_admin_page|lower }}';