b0deafc53e
* all the good changes * follows * dont send duplicates * remove follow_type for now * dont add all the extra stuff we're not implementing yet * refactor * lots of fixes * Delete activity.html.erb * Delete activity.text.erb * Update 20170209215819_create_follows.rb * Update schema.rb * Update mapping.rb * Update mailboxer.rb
10 lines
No EOL
231 B
Ruby
10 lines
No EOL
231 B
Ruby
# frozen_string_literal: true
|
|
module TopicMailerHelper
|
|
def added_to_map_subject(topic, map)
|
|
topic.name + ' was added to map ' + map.name
|
|
end
|
|
|
|
def connected_subject(topic)
|
|
'new synapse to topic ' + topic.name
|
|
end
|
|
end |