app/models/tramway/page/page.rb in tramway-page-1.5.4.3 vs app/models/tramway/page/page.rb in tramway-page-1.6
- old
+ new
@@ -1,10 +1,10 @@
# frozen_string_literal: true
class Tramway::Page::Page < ::Tramway::Core::ApplicationRecord
has_many :blocks, -> { order(position: :asc) }, class_name: 'Tramway::Landing::Block'
- enumerize :page_type, in: %i[main other], default: :other
+ enumerize :page_type, in: %i[main other without_layout], default: :other
scope :landings, -> { where page_type: :landing }
scope :published, -> { where view_state: :published }
aasm :view_state, column: :view_state do