1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/app/mailers/application_mailer.rb
2023-02-20 11:18:08 +09:00

15 lines
296 B
Ruby

# frozen_string_literal: true
class ApplicationMailer < ActionMailer::Base
layout 'mailer'
helper :application
helper :instance
helper :formatting
protected
def locale_for_account(account, &block)
I18n.with_locale(account.user_locale || I18n.default_locale, &block)
end
end