mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-14 01:50:39 +09:00
feat(plugins): add document CRUD methods to Plugin SDK
Wire issue document list/get/upsert/delete operations through the JSON-RPC protocol so plugins can manage issue documents with the same capabilities available via the REST API. Fixes #940
This commit is contained in:
parent
3dc3347a58
commit
0d4dd50b35
7 changed files with 216 additions and 1 deletions
|
|
@ -315,6 +315,7 @@ export const PLUGIN_CAPABILITIES = [
|
|||
"project.workspaces.read",
|
||||
"issues.read",
|
||||
"issue.comments.read",
|
||||
"issue.documents.read",
|
||||
"agents.read",
|
||||
"goals.read",
|
||||
"goals.create",
|
||||
|
|
@ -325,6 +326,7 @@ export const PLUGIN_CAPABILITIES = [
|
|||
"issues.create",
|
||||
"issues.update",
|
||||
"issue.comments.create",
|
||||
"issue.documents.write",
|
||||
"agents.pause",
|
||||
"agents.resume",
|
||||
"agents.invoke",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue