-
Notifications
You must be signed in to change notification settings - Fork 32
Locales
Vinicius Stock edited this page Nov 26, 2019
·
2 revisions
Sail.set(:my_locales_setting, ["en", "es"])
Sail.set(:my_locales_setting, "en;es")
Sail.get(:my_locales_setting)
=> true
Sail.get(:my_locales_setting) do |setting_value|
puts setting_value
end
=> true
Locales settings can be used to turn on functionality only for a specific locale.
class User < ApplicationRecord
.
.
.
def send_promotional_email
Mailer.send_promotion(self) if Sail.get(:promotion_enabled_for_locale)
end
end