8bb7783215
So that we can reuse in other scenarios
15 lines
282 B
Ruby
15 lines
282 B
Ruby
module Event::Promptable
|
|
extend ActiveSupport::Concern
|
|
|
|
def to_prompt
|
|
<<~PROMPT
|
|
## Event #{action} (#{eventable_type} #{eventable_id}))
|
|
|
|
* Created at: #{created_at}
|
|
* Created by: #{creator.name}
|
|
|
|
#{eventable.to_prompt}
|
|
PROMPT
|
|
end
|
|
end
|