(
&self,
request: Request<RejectDraftChunkRequest>,
)
| 581 | |
| 582 | #[rpc_auth(auth = "bearer", scope = "config:write", role = "admin")] |
| 583 | async fn reject_draft_chunk( |
| 584 | &self, |
| 585 | request: Request<RejectDraftChunkRequest>, |
| 586 | ) -> Result<Response<RejectDraftChunkResponse>, Status> { |
| 587 | policy::handle_reject_draft_chunk(&self.state, request).await |
| 588 | } |
| 589 | |
| 590 | #[rpc_auth(auth = "bearer", scope = "config:write", role = "admin")] |
| 591 | async fn approve_all_draft_chunks( |
no test coverage detected