Sha256: 4058b00e62413a12dde58b61a3b94f1be615ba2493cf4c3ff6cb562d8e5f2160
Contents?: true
Size: 1.15 KB
Versions: 26
Compression:
Stored size: 1.15 KB
Contents
class Mumuki::Domain::Organization::Profile < Mumukit::Platform::Model LOCALES = Mumukit::Platform::Locale::SPECS model_attr_accessor :logo_url, :banner_url, :favicon_url, :breadcrumb_image_url, :open_graph_image_url, :locale, :description, :contact_email, :terms_of_service, :community_link, :errors_explanations, :welcome_email_template, :welcome_email_sender def locale_json locale_h.to_json end def locale_h Mumukit::Platform::Locale::SPECS[locale] end def logo_url @logo_url ||= 'https://mumuki.io/logo-alt-large.png' # Best image size: 350x75 end def banner_url @banner_url || logo_url # Best image size: 350x75 end def favicon_url @favicon_url ||= '/favicon.ico' # Best image size: 16x16, 32x32 or 48x48 end def open_graph_image_url @open_graph_image_url ||= Mumukit::Platform.laboratory.url_for("logo-alt.png") # Best image size: 256x256 end end
Version data entries
26 entries across 26 versions & 1 rubygems