(
store: &Store,
settings: &StoredSettings,
)
| 3718 | } |
| 3719 | |
| 3720 | pub(super) async fn save_global_settings( |
| 3721 | store: &Store, |
| 3722 | settings: &StoredSettings, |
| 3723 | ) -> Result<(), Status> { |
| 3724 | save_settings_record( |
| 3725 | store, |
| 3726 | GLOBAL_SETTINGS_OBJECT_TYPE, |
| 3727 | GLOBAL_SETTINGS_NAME, |
| 3728 | settings, |
| 3729 | ) |
| 3730 | .await |
| 3731 | } |
| 3732 | |
| 3733 | pub(super) async fn load_sandbox_settings( |
| 3734 | store: &Store, |
no test coverage detected