feat: Add board activity log

This commit is contained in:
Maksim Eltyshev
2025-05-22 23:14:46 +02:00
parent 777ff467f3
commit 86cfd155f2
72 changed files with 833 additions and 169 deletions

View File

@@ -47,6 +47,13 @@ const openBoardSettingsModal = (boardId) => ({
},
});
const openBoardActivitiesModal = () => ({
type: EntryActionTypes.MODAL_OPEN,
payload: {
type: ModalTypes.BOARD_ACTIVITIES,
},
});
const closeModal = () => ({
type: EntryActionTypes.MODAL_CLOSE,
payload: {},
@@ -58,5 +65,6 @@ export default {
openAddProjectModal,
openProjectSettingsModal,
openBoardSettingsModal,
openBoardActivitiesModal,
closeModal,
};