(
&self,
request: Request<ClearDraftChunksRequest>,
)
| 613 | |
| 614 | #[rpc_auth(auth = "bearer", scope = "config:write", role = "admin")] |
| 615 | async fn clear_draft_chunks( |
| 616 | &self, |
| 617 | request: Request<ClearDraftChunksRequest>, |
| 618 | ) -> Result<Response<ClearDraftChunksResponse>, Status> { |
| 619 | policy::handle_clear_draft_chunks(&self.state, request).await |
| 620 | } |
| 621 | |
| 622 | #[rpc_auth(auth = "bearer", scope = "config:read", role = "user")] |
| 623 | async fn get_draft_history( |
nothing calls this directly
no test coverage detected