(
&self,
request: Request<UndoDraftChunkRequest>,
)
| 605 | |
| 606 | #[rpc_auth(auth = "bearer", scope = "config:write", role = "admin")] |
| 607 | async fn undo_draft_chunk( |
| 608 | &self, |
| 609 | request: Request<UndoDraftChunkRequest>, |
| 610 | ) -> Result<Response<UndoDraftChunkResponse>, Status> { |
| 611 | policy::handle_undo_draft_chunk(&self.state, request).await |
| 612 | } |
| 613 | |
| 614 | #[rpc_auth(auth = "bearer", scope = "config:write", role = "admin")] |
| 615 | async fn clear_draft_chunks( |
nothing calls this directly
no test coverage detected