Skip to content
Merged
Changes from all commits
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
76 changes: 38 additions & 38 deletions src/config/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -818,51 +818,51 @@ export const MILESTONE_LINK_SUPPORTED_TYPES = [
// Notifications event types
export const EVENT_TYPE = {
POST: {
UPDATED: 'notifications.connect.project.post.edited',
CREATED: 'notifications.connect.project.post.created',
DELETED: 'notifications.connect.project.post.deleted',
MENTION: 'notifications.connect.project.post.mention',
UPDATED: 'connect.notification.project.post.edited',
CREATED: 'connect.notification.project.post.created',
DELETED: 'connect.notification.project.post.deleted',
MENTION: 'connect.notification.project.post.mention',
},
MEMBER: {
JOINED: 'notifications.connect.project.member.joined',
LEFT: 'notifications.connect.project.member.left',
REMOVED: 'notifications.connect.project.member.removed',
MANAGER_JOINED: 'notifications.connect.project.member.managerJoined',
COPILOT_JOINED: 'notifications.connect.project.member.copilotJoined',
ASSIGNED_AS_OWNER: 'notifications.connect.project.member.assignedAsOwner',
INVITE_REQUESTED: 'notifications.connect.project.member.invite.requested',
INVITE_APPROVED: 'notifications.connect.project.member.invite.approved',
INVITE_REFUSED: 'notifications.connect.project.member.invite.rejected',
JOINED: 'connect.notification.project.member.joined',
LEFT: 'connect.notification.project.member.left',
REMOVED: 'connect.notification.project.member.removed',
MANAGER_JOINED: 'connect.notification.project.member.managerJoined',
COPILOT_JOINED: 'connect.notification.project.member.copilotJoined',
ASSIGNED_AS_OWNER: 'connect.notification.project.member.assignedAsOwner',
INVITE_REQUESTED: 'connect.notification.project.member.invite.requested',
INVITE_APPROVED: 'connect.notification.project.member.invite.approved',
INVITE_REFUSED: 'connect.notification.project.member.invite.rejected',
},
PROJECT: {
ACTIVE: 'notifications.connect.project.active',
APPROVED: 'notifications.connect.project.approved',
CANCELED: 'notifications.connect.project.canceled',
COMPLETED: 'notifications.connect.project.completed',
CREATED: 'notifications.connect.project.created',
FILE_UPLOADED: 'notifications.connect.project.fileUploaded',
LINK_CREATED: 'notifications.connect.project.linkCreated',
PAUSED: 'notifications.connect.project.paused',
SUBMITTED_FOR_REVIEW: 'notifications.connect.project.submittedForReview',
SPECIFICATION_MODIFIED: 'connect.action.project.updated.spec',
ACTIVE: 'connect.notification.project.active',
APPROVED: 'connect.notification.project.approved',
CANCELED: 'connect.notification.project.canceled',
COMPLETED: 'connect.notification.project.completed',
CREATED: 'connect.notification.project.created',
FILE_UPLOADED: 'connect.notification.project.fileUploaded',
LINK_CREATED: 'connect.notification.project.linkCreated',
PAUSED: 'connect.notification.project.paused',
SUBMITTED_FOR_REVIEW: 'connect.notification.project.submittedForReview',
SPECIFICATION_MODIFIED: 'connect.notification.project.updated.spec',
},
PROJECT_PLAN: {
READY: 'connect.action.project.plan.ready',
MODIFIED: 'connect.action.project.plan.updated',
PROGRESS_UPDATED: 'connect.action.project.updated.progress',
PHASE_ACTIVATED: 'notifications.connect.project.phase.transition.active',
PHASE_COMPLETED: 'notifications.connect.project.phase.transition.completed',
PHASE_PAYMENT_UPDATED: 'notifications.connect.project.phase.update.payment',
PHASE_PROGRESS_UPDATED: 'notifications.connect.project.phase.update.progress',
PHASE_SCOPE_UPDATED: 'notifications.connect.project.phase.update.scope',
PHASE_PRODUCT_SPEC_UPDATED: 'connect.action.project.product.update.spec',
MILESTONE_ACTIVATED: 'connect.action.timeline.milestone.transition.active',
MILESTONE_COMPLETED: 'connect.action.timeline.milestone.transition.completed',
WAITING_FOR_CUSTOMER_INPUT: 'connect.action.timeline.milestone.waiting.customer',
TIMELINE_ADJUSTED: 'connect.action.timeline.adjusted',
READY: 'connect.notification.project.plan.ready',
MODIFIED: 'connect.notification.project.plan.updated',
PROGRESS_UPDATED: 'connect.notification.project.updated.progress',
PHASE_ACTIVATED: 'connect.notification.project.phase.transition.active',
PHASE_COMPLETED: 'connect.notification.project.phase.transition.completed',
PHASE_PAYMENT_UPDATED: 'connect.notification.project.phase.update.payment',
PHASE_PROGRESS_UPDATED: 'connect.notification.project.phase.update.progress',
PHASE_SCOPE_UPDATED: 'connect.notification.project.phase.update.scope',
PHASE_PRODUCT_SPEC_UPDATED: 'connect.notification.project.product.update.spec',
MILESTONE_ACTIVATED: 'connect.notification.timeline.milestone.transition.active',
MILESTONE_COMPLETED: 'connect.notification.timeline.milestone.transition.completed',
WAITING_FOR_CUSTOMER_INPUT: 'connect.notification.timeline.milestone.waiting.customer',
TIMELINE_ADJUSTED: 'connect.notification.timeline.adjusted',
},
TOPIC: {
CREATED: 'notifications.connect.project.topic.created',
DELETED: 'notifications.connect.project.topic.deleted',
CREATED: 'connect.notification.project.topic.created',
DELETED: 'connect.notification.project.topic.deleted',
},
}