docs: Improve Swagger JSDoc

This commit is contained in:
Maksim Eltyshev
2025-09-12 12:17:01 +02:00
parent 494800d131
commit b4979d214f
129 changed files with 294 additions and 248 deletions
+4 -4
View File
@@ -16,13 +16,13 @@ export const transformActivity = (activity) => ({
/* Actions */
const getActivitiesInBoard = (boardId, data, headers) =>
const getBoardActivities = (boardId, data, headers) =>
socket.get(`/boards/${boardId}/actions`, data, headers).then((body) => ({
...body,
items: body.items.map(transformActivity),
}));
const getActivitiesInCard = (cardId, data, headers) =>
const getCardActivities = (cardId, data, headers) =>
socket.get(`/cards/${cardId}/actions`, data, headers).then((body) => ({
...body,
items: body.items.map(transformActivity),
@@ -38,7 +38,7 @@ const makeHandleActivityCreate = (next) => (body) => {
};
export default {
getActivitiesInBoard,
getActivitiesInCard,
getBoardActivities,
getCardActivities,
makeHandleActivityCreate,
};
+4 -4
View File
@@ -7,10 +7,10 @@ import socket from './socket';
/* Actions */
const createCustomFieldGroupInBoard = (cardId, data, headers) =>
const createBoardCustomFieldGroup = (cardId, data, headers) =>
socket.post(`/boards/${cardId}/custom-field-groups`, data, headers);
const createCustomFieldGroupInCard = (cardId, data, headers) =>
const createCardCustomFieldGroup = (cardId, data, headers) =>
socket.post(`/cards/${cardId}/custom-field-groups`, data, headers);
const getCustomFieldGroup = (id, headers) =>
@@ -23,8 +23,8 @@ const deleteCustomFieldGroup = (id, headers) =>
socket.delete(`/custom-field-groups/${id}`, undefined, headers);
export default {
createCustomFieldGroupInBoard,
createCustomFieldGroupInCard,
createBoardCustomFieldGroup,
createCardCustomFieldGroup,
getCustomFieldGroup,
updateCustomFieldGroup,
deleteCustomFieldGroup,
+4 -4
View File
@@ -7,10 +7,10 @@ import socket from './socket';
/* Actions */
const createNotificationServiceInUser = (userId, data, headers) =>
const createUserNotificationService = (userId, data, headers) =>
socket.post(`/users/${userId}/notification-services`, data, headers);
const createNotificationServiceInBoard = (boardId, data, headers) =>
const createBoardNotificationService = (boardId, data, headers) =>
socket.post(`/boards/${boardId}/notification-services`, data, headers);
const updateNotificationService = (id, data, headers) =>
@@ -23,8 +23,8 @@ const deleteNotificationService = (id, headers) =>
socket.delete(`/notification-services/${id}`, undefined, headers);
export default {
createNotificationServiceInUser,
createNotificationServiceInBoard,
createUserNotificationService,
createBoardNotificationService,
updateNotificationService,
testNotificationService,
deleteNotificationService,