Sha256: 116bf86a46b44fdc79657c8c924e8463aba1bfdbac94162c7534db517dc878b5

Contents?: true

Size: 639 Bytes

Versions: 1

Compression:

Stored size: 639 Bytes

Contents

# frozen_string_literal: true

class Tramway::Page::Page < ::Tramway::ApplicationRecord
  has_many :blocks, -> { order(position: :asc) }, class_name: 'Tramway::Landing::Block'

  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
    state :unpublished, initial: true
    state :published

    event :publish do
      transitions from: :unpublished, to: :published
    end

    event :hide do
      transitions from: :published, to: :unpublished
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tramway-page-1.6.0.1 app/models/tramway/page/page.rb