mirror of
https://github.com/plankanban/planka.git
synced 2026-02-25 03:14:50 +03:00
API Questions #353
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @TywinLanni on GitHub (Aug 24, 2023).
Good afternoon, is there any way to get the entire list of comments from all cards in one request? For example GET /api/comment-actions. Now you have to request /api/cards/:cardId/actions separately for each card, this is not convenient.
The second question is can I get details actions? Endpoint /api/cards/:cardId/actions gon't recive it.
Thanks in advance for your reply!
@meltyshev commented on GitHub (Aug 26, 2023):
Hi! Unfortunately, there is no way to get all actions in one request 😔 To get actions with details, you have to pass the
withDetails: trueparameter (by default it is false).@TywinLanni commented on GitHub (Aug 27, 2023):
Thank you for answer!