Sha256: baeee10d6fea4e29dc4e05a7f7144db344b6f52375dd0eb2f487099b7185dc61
Contents?: true
Size: 912 Bytes
Versions: 32
Compression:
Stored size: 912 Bytes
Contents
Spree::Store.all.each do |store| store.supported_locales_list.each do |locale| case locale when 'en' Spree::CmsPage.where( title: 'Homepage (English)', type: 'Spree::Cms::Pages::Homepage', store: store, locale: locale ).first_or_create! when 'fr' Spree::CmsPage.where( title: "Page d'accueil (Français)", type: 'Spree::Cms::Pages::Homepage', store: store, locale: locale ).first_or_create! when 'de' Spree::CmsPage.where( title: 'Startseite (Deutsche)', type: 'Spree::Cms::Pages::Homepage', store: store, locale: locale ).first_or_create! when 'es' Spree::CmsPage.where( title: 'Página principal (Español)', type: 'Spree::Cms::Pages::Homepage', store: store, locale: locale ).first_or_create! end end end
Version data entries
32 entries across 32 versions & 1 rubygems