From 7b13097a640f0e6de130172a8661c984d7120a49 Mon Sep 17 00:00:00 2001 From: HANAI tohru Date: Tue, 12 Jan 2021 18:03:47 +0900 Subject: [PATCH] fix: there is no API to get custom labels but default labels --- lib/resources/Boards.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/resources/Boards.js b/lib/resources/Boards.js index 3e39fc5..1d82898 100644 --- a/lib/resources/Boards.js +++ b/lib/resources/Boards.js @@ -36,7 +36,7 @@ module.exports = TrelloResource.extend({ searchLabels: trelloMethod({ method: 'GET', - path: '/{id}/customLabels', + path: '/{id}/labels', urlParams: [ 'id' ] }),