From 2dcd4f396541df0ba43432aba8becfcf83dd7a33 Mon Sep 17 00:00:00 2001 From: Peter Goodhall Date: Wed, 29 Sep 2021 22:02:08 +0100 Subject: [PATCH] Added comments --- application/models/Stations.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/application/models/Stations.php b/application/models/Stations.php index e9f1717d..ec9cc4ef 100644 --- a/application/models/Stations.php +++ b/application/models/Stations.php @@ -19,6 +19,8 @@ class Stations extends CI_Model { return $this->db->get(); } + // Returns ALL station profiles regardless of user logged in + // This is also used by LoTW sync so must not be changed. function all() { return $this->db->get('station_profile'); }