(store: &Store)
| 3714 | } |
| 3715 | |
| 3716 | pub(super) async fn load_global_settings(store: &Store) -> Result<StoredSettings, Status> { |
| 3717 | load_settings_record(store, GLOBAL_SETTINGS_OBJECT_TYPE, GLOBAL_SETTINGS_NAME).await |
| 3718 | } |
| 3719 | |
| 3720 | pub(super) async fn save_global_settings( |
| 3721 | store: &Store, |
no test coverage detected