mirror of
https://github.com/plankanban/planka.git
synced 2025-08-02 12:05:24 +02:00
14 lines
255 B
JavaScript
Executable file
14 lines
255 B
JavaScript
Executable file
export const ProjectBackgroundTypes = {
|
|
GRADIENT: 'gradient',
|
|
IMAGE: 'image',
|
|
};
|
|
|
|
export const BoardTypes = {
|
|
KANBAN: 'kanban',
|
|
};
|
|
|
|
export const ActionTypes = {
|
|
CREATE_CARD: 'createCard',
|
|
MOVE_CARD: 'moveCard',
|
|
COMMENT_CARD: 'commentCard',
|
|
};
|