(
store: &Store,
sandbox_name: &str,
)
| 3731 | } |
| 3732 | |
| 3733 | pub(super) async fn load_sandbox_settings( |
| 3734 | store: &Store, |
| 3735 | sandbox_name: &str, |
| 3736 | ) -> Result<StoredSettings, Status> { |
| 3737 | load_settings_record(store, SANDBOX_SETTINGS_OBJECT_TYPE, sandbox_name).await |
| 3738 | } |
| 3739 | |
| 3740 | pub(super) async fn save_sandbox_settings( |
| 3741 | store: &Store, |
no test coverage detected