Last active
June 18, 2020 06:31
-
-
Save ritikesh/7ce56aa64c5a1d2c7e7a43220d16c8cd to your computer and use it in GitHub Desktop.
blog gists
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Tenant < ActiveRecord::Base | |
... | |
# associations | |
has_one :tenant_configs | |
delegate :locale, :timezone, :date_format, ..., to: :tenant_configs | |
... | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment