mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 05:09:43 +02:00
Code formatting with prettier, change eslint config for the server
This commit is contained in:
parent
bc87c1d883
commit
7a3805e64c
191 changed files with 4321 additions and 2880 deletions
|
@ -5,14 +5,10 @@ import EntryActionTypes from '../../../constants/EntryActionTypes';
|
|||
|
||||
export default function* () {
|
||||
yield all([
|
||||
takeLatest(
|
||||
EntryActionTypes.TASK_IN_CURRENT_CARD_CREATE,
|
||||
({ payload: { data } }) => createTaskInCurrentCardService(data),
|
||||
),
|
||||
takeLatest(
|
||||
EntryActionTypes.TASK_UPDATE,
|
||||
({ payload: { id, data } }) => updateTaskService(id, data),
|
||||
),
|
||||
/* eslint-disable max-len */
|
||||
takeLatest(EntryActionTypes.TASK_IN_CURRENT_CARD_CREATE, ({ payload: { data } }) => createTaskInCurrentCardService(data)),
|
||||
takeLatest(EntryActionTypes.TASK_UPDATE, ({ payload: { id, data } }) => updateTaskService(id, data)),
|
||||
/* eslint-enable max-len */
|
||||
takeLatest(EntryActionTypes.TASK_DELETE, ({ payload: { id } }) => deleteTaskService(id)),
|
||||
]);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue