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

16 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