createBoard |
POST /boards |
Creates a new board |
getAllBoards |
GET /boards |
Retrieves a list of boards |
getBoardsBySearches |
GET /boards/search?q={query} |
Retrieves a list of boards that contain a specific keyword. |
getBoardsByIdAndType |
GET /boards/board?id={id_value}&id_type={id_type} |
Get id type and id, return appropriate return, |
updateBoard |
PUT /boards/{board_id} |
Updates an existing board by ID |
softDeleteBoard |
PATCH /boards/{board_id} |
Soft-deletes a board by ID |
likeBoard |
POST /boards/{board_id}/like |
Adds a like to a board by ID |