Sha256: 7fb9a3bf9aba833568eb30fc7c6fe214146a21733c91f66639de5fdaad50bd10

Contents?: true

Size: 352 Bytes

Versions: 1

Compression:

Stored size: 352 Bytes

Contents

controller :my_controller do
  action :index do
    on_entry %{
      my_controller_base = __base__;
    }

    on "next_clicked", %{
      Goto("other");
    }
  end

  action :other do
    on_entry %{
      other_entered = true;
    }

    on "next_clicked", %{
      Goto("other2");
    }

  end

  action :other2 do
    on_entry %{
    }
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
flok-0.0.105 spec/kern/assets/hook_entry_points/controller0bc.rb