(
&self,
request: Request<EditDraftChunkRequest>,
)
| 597 | |
| 598 | #[rpc_auth(auth = "bearer", scope = "config:write", role = "admin")] |
| 599 | async fn edit_draft_chunk( |
| 600 | &self, |
| 601 | request: Request<EditDraftChunkRequest>, |
| 602 | ) -> Result<Response<EditDraftChunkResponse>, Status> { |
| 603 | policy::handle_edit_draft_chunk(&self.state, request).await |
| 604 | } |
| 605 | |
| 606 | #[rpc_auth(auth = "bearer", scope = "config:write", role = "admin")] |
| 607 | async fn undo_draft_chunk( |
nothing calls this directly
no test coverage detected