cortex-cms/cortex

View on GitHub
app/cells/cortex/wizard_cell.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Cortex
  class WizardCell < Cortex::ApplicationCell
    property :data

    def show
      render
    end

    private

    def data_mash
      Hashie::Mash.new(data)
    end
  end
end