mirror of
https://github.com/diaspora/diaspora.git
synced 2026-01-07 22:33:56 -05:00
10 lines
288 B
Ruby
10 lines
288 B
Ruby
# frozen_string_literal: true
|
|
|
|
module NotificationMailers
|
|
class StartedSharing < NotificationMailers::Base
|
|
def set_headers(*_args) # rubocop:disable Style/AccessorMethodName
|
|
@headers[:subject] = I18n.t("notifier.started_sharing.subject", name: @sender.name)
|
|
end
|
|
end
|
|
end
|