fix(agent): allow members to manage skills on their own agents
SetAgentSkills previously only allowed workspace owner/admin roles, blocking members from adding skills to their own agents. Now uses canManageAgent which allows agent owners too. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
ac06e7f4a3
commit
f05f3face3
1 changed files with 1 additions and 1 deletions
|
|
@ -959,7 +959,7 @@ func (h *Handler) SetAgentSkills(w http.ResponseWriter, r *http.Request) {
|
|||
if !ok {
|
||||
return
|
||||
}
|
||||
if _, ok := h.requireWorkspaceRole(w, r, uuidToString(agent.WorkspaceID), "agent not found", "owner", "admin"); !ok {
|
||||
if !h.canManageAgent(w, r, agent) {
|
||||
return
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue