2016-12-16 16:51:52 -05:00
|
|
|
# frozen_string_literal: true
|
2017-11-25 11:23:47 -08:00
|
|
|
|
2016-12-16 16:51:52 -05:00
|
|
|
class Webhooks::Slack::SynapseRemovedFromMap < Webhooks::Slack::Base
|
|
|
|
def text
|
|
|
|
connector = eventable.desc.empty? ? '->' : eventable.desc
|
2018-01-21 14:21:00 -08:00
|
|
|
|
2017-01-23 19:30:13 -05:00
|
|
|
# TODO: express correct directionality of arrows when desc is empty
|
2018-01-21 14:21:00 -08:00
|
|
|
|
|
|
|
"\"*#{eventable.topic1.name}* #{connector} *#{eventable.topic2.name}*\"" \
|
|
|
|
" was removed by *#{event.user.name}* as a connection" \
|
|
|
|
" from the map *#{view_map_on_metamaps}*"
|
2016-12-16 16:51:52 -05:00
|
|
|
end
|
|
|
|
end
|