metamaps--metamaps/app/models/webhooks/slack/topic_added_to_map.rb

31 lines
611 B
Ruby
Raw Normal View History

class Webhooks::Slack::TopicAddedToMap < Webhooks::Slack::Base
def text
2016-03-13 00:56:18 +00:00
"New #{eventable.mappable.metacode.name} topic *#{eventable.mappable.name}* was added to the map *#{view_map_on_metamaps()}*"
end
def icon_url
2016-03-13 00:56:18 +00:00
eventable.mappable.metacode.icon
end
def attachment_fallback
"" #{}"*#{eventable.name}*\n#{eventable.description}\n"
end
def attachment_title
"" #proposal_link(eventable)
end
def attachment_text
"" # "#{eventable.description}\n"
end
def attachment_fields
[{
title: "nothing",
value: "nothing"
}] #[motion_vote_field]
end
end