(
&self,
request: Request<ApproveAllDraftChunksRequest>,
)
| 589 | |
| 590 | #[rpc_auth(auth = "bearer", scope = "config:write", role = "admin")] |
| 591 | async fn approve_all_draft_chunks( |
| 592 | &self, |
| 593 | request: Request<ApproveAllDraftChunksRequest>, |
| 594 | ) -> Result<Response<ApproveAllDraftChunksResponse>, Status> { |
| 595 | policy::handle_approve_all_draft_chunks(&self.state, request).await |
| 596 | } |
| 597 | |
| 598 | #[rpc_auth(auth = "bearer", scope = "config:write", role = "admin")] |
| 599 | async fn edit_draft_chunk( |
no test coverage detected