Class: Integrations::GroupMentionService
- Inherits:
-
Object
- Object
- Integrations::GroupMentionService
- Defined in:
- app/services/integrations/group_mention_service.rb
Constant Summary collapse
- GROUP_MENTION_LIMIT =
3
Instance Method Summary collapse
- #execute ⇒ Object
-
#initialize(mentionable, hook_data:, is_confidential:) ⇒ GroupMentionService
constructor
A new instance of GroupMentionService.
Constructor Details
#initialize(mentionable, hook_data:, is_confidential:) ⇒ GroupMentionService
Returns a new instance of GroupMentionService.
14 15 16 17 18 |
# File 'app/services/integrations/group_mention_service.rb', line 14 def initialize(mentionable, hook_data:, is_confidential:) @mentionable = mentionable @hook_data = hook_data @is_confidential = is_confidential end |