Sha256: 2c24b43b178b7609f213b380d8d787ddaed79902273b085eb97f77faed4d45d5
Contents?: true
Size: 1.2 KB
Versions: 7
Compression:
Stored size: 1.2 KB
Contents
module Locomotive::Steam class Site include Locomotive::Steam::Models::Entity def initialize(attributes = {}) super({ cache_enabled: false, prefix_default_locale: false, updated_at: nil, content_version: nil, template_version: nil, domains: [], redirect_to_first_domain: false, url_redirections: [], private_access: false, password: nil, metafields_schema: {}, metafields: nil }.merge(attributes)) end def handle self[:handle] || self[:subdomain] end def default_locale locales.first || :en end def locales (self[:locales] || [:en]).map(&:to_sym) end def timezone_name self[:timezone] || self[:timezone_name] || 'UTC' end def timezone @timezone ||= ActiveSupport::TimeZone.new(timezone_name) end def last_modified_at [self.content_version, self.template_version].compact.sort.last || self.updated_at end def to_liquid Locomotive::Steam::Liquid::Drops::Site.new(self) end end end
Version data entries
7 entries across 7 versions & 1 rubygems