(
&self,
plugin_id: u64,
)
| 129 | } |
| 130 | |
| 131 | async fn get_plugin_images_with_pool( |
| 132 | &self, |
| 133 | plugin_id: u64, |
| 134 | ) -> ConfigStoreResult<Vec<DbPluginImage>> { |
| 135 | Self::get_plugin_images_with_conn(&mut *self.pool.acquire().await?, plugin_id).await |
| 136 | } |
| 137 | |
| 138 | async fn get_plugin_images_with_conn( |
| 139 | conn: &mut PgConnection, |
no outgoing calls
no test coverage detected