Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor collab fixes #5271

Merged
merged 8 commits into from
Jun 24, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'release' into minor-collab-updates
  • Loading branch information
rishabhsaxena authored Jun 23, 2021
commit a49c94ef8d4f8c2534dd28a9a1aa9026d9ae8df9
7 changes: 7 additions & 0 deletions app/client/src/constants/ReduxActionConstants.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ export const ReduxActionTypes: { [key: string]: string } = {
"FETCH_UNREAD_COMMENT_THREADS_COUNT_REQUEST",
FETCH_UNREAD_COMMENT_THREADS_COUNT_SUCCESS:
"FETCH_UNREAD_COMMENT_THREADS_COUNT_SUCCESS",
MARK_NOTIFICATION_AS_READ_REQUEST: "MARK_NOTIFICATION_AS_READ_REQUEST",
MARK_NOTIFICATION_AS_READ_SUCCESS: "MARK_NOTIFICATION_AS_READ_SUCCESS",
FETCH_UNREAD_NOTIFICATIONS_COUNT_REQUEST:
"FETCH_UNREAD_NOTIFICATIONS_COUNT_REQUEST",
FETCH_UNREAD_NOTIFICATIONS_COUNT_SUCCESS:
"FETCH_UNREAD_NOTIFICATIONS_COUNT_SUCCESS",
RESET_NOTIFICATIONS: "RESET_NOTIFICATIONS",
MARK_ALL_NOTIFICATIONS_AS_READ_REQUEST:
"MARK_ALL_NOTIFICATIONS_AS_READ_REQUEST",
MARK_ALL_NOTIFICATIONS_AS_READ_SUCCESS:
Expand Down
2 changes: 0 additions & 2 deletions app/client/src/sagas/CommentSagas/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,6 @@ function* fetchApplicationComments() {
if (isValidResponse) {
yield put(fetchApplicationCommentsSuccess(response.data));
yield put(fetchUnreadCommentThreadsCountRequest());
} else {
// todo invalid response
}
} catch (error) {
yield put({
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.