cortex-cms/cortex

View on GitHub
app/cells/cortex/wizard/step_cell.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Cortex
  module Wizard
    class StepCell < Cortex::ApplicationCell
      include ActionView::RecordIdentifier
      include ActionView::Helpers::FormHelper

      property :name
      property :heading
      property :description
      property :columns

      def show
        render
      end
    end
  end
end