66d0f29d45
And DRY up some duplication.
11 lines
156 B
Ruby
11 lines
156 B
Ruby
class Notifier::Commented < Notifier
|
|
private
|
|
def body
|
|
"commented on: #{bubble.title}"
|
|
end
|
|
|
|
def resource
|
|
event.comment
|
|
end
|
|
end
|