summaryrefslogtreecommitdiffstats
path: root/src/types
diff options
context:
space:
mode:
authorDevlin Junker <devlin.junker@gmail.com>2023-09-06 22:00:06 -0700
committerBenjamin Brahmer <info@b-brahmer.de>2023-09-20 17:32:33 +0200
commitfe034782f73bf9ad25881e3b2c61353664f49973 (patch)
tree3a1b6ad7225550ed4a2636661b377ae624ef8fd9 /src/types
parentdce0701f73b4dcba4ce6efd0b80aadfc4f97c7ce (diff)
start hooking up actions to backend
Signed-off-by: Devlin Junker <devlin.junker@gmail.com>
Diffstat (limited to 'src/types')
-rw-r--r--src/types/MutationTypes.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/types/MutationTypes.ts b/src/types/MutationTypes.ts
index 859c47f04..9947b7d11 100644
--- a/src/types/MutationTypes.ts
+++ b/src/types/MutationTypes.ts
@@ -1,6 +1,11 @@
export const FEED_MUTATION_TYPES = {
ADD_FEED: 'ADD_FEED',
SET_FEEDS: 'SET_FEEDS',
+ UPDATE_FEED: 'UPDATE_FEED',
+
+ SET_FEED_ALL_READ: 'SET_FEED_ALL_READ',
+ INCREASE_FEED_UNREAD_COUNT: 'INCREASE_FEED_UNREAD_COUNT',
+ DECREASE_FEED_UNREAD_COUNT: 'DECREASE_FEED_UNREAD_COUNT',
}
export const FOLDER_MUTATION_TYPES = {