8 lines
224 B
Ruby
8 lines
224 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Leave Management Events
|
|
LEAVE_CREATED = 'leave.created'
|
|
LEAVE_UPDATED = 'leave.updated'
|
|
LEAVE_APPROVED = 'leave.approved'
|
|
LEAVE_REJECTED = 'leave.rejected'
|
|
LEAVE_CANCELLED = 'leave.cancelled' |