Skip to content

Commit

Permalink
updated activity constants
Browse files Browse the repository at this point in the history
  • Loading branch information
Apple authored and Apple committed Sep 25, 2024
1 parent ccaef40 commit cdc21d9
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions constant/activity.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
package constant

const CompanyProfileCreated = "COMPANY_PROFILE_CREATED"
const OpportunityCreated = "OPPORTUNITY_CREATED"
const ApplicationCreated = "APPLICATION_CREATED"
const ACTIVITY_COMPANY_PROFILE_CREATED = "COMPANY_PROFILE_CREATED"
const ACTIVITY_COMPANY_PROFILE_UPDATED = "COMPANY_PROFILE_UPDATED"
const ACTIVITY_COMPANY_PROFILE_DELETED = "COMPANY_PROFILE_DELETED"

const ACTIVITY_APPLICATION_CREATED = "APPLICATION_CREATED"
const ACTIVITY_APPLICATION_UPDATED = "APPLICATION_UPDATED"
const ACTIVITY_APPLICATION_WITHDRAWN = "APPLICATION_WITHDRAWN"
const ACTIVITY_APPLICATION_DELETED = "APPLICATION_DELETED"

const ACTIVITY_OPPORTUNITY_CREATED = "OPPORTUNITY_CREATED"
const ACTIVITY_OPPORTUNITY_UPDATED = "OPPORTUNITY_UPDATED"
const ACTIVITY_OPPORTUNITY_DELETED = "OPPORTUNITY_DELETED"

0 comments on commit cdc21d9

Please sign in to comment.