(
store: &Store,
sandbox_name: &str,
settings: &StoredSettings,
)
| 3738 | } |
| 3739 | |
| 3740 | pub(super) async fn save_sandbox_settings( |
| 3741 | store: &Store, |
| 3742 | sandbox_name: &str, |
| 3743 | settings: &StoredSettings, |
| 3744 | ) -> Result<(), Status> { |
| 3745 | save_settings_record(store, SANDBOX_SETTINGS_OBJECT_TYPE, sandbox_name, settings).await |
| 3746 | } |
| 3747 | |
| 3748 | async fn load_settings_record( |
| 3749 | store: &Store, |
no test coverage detected