Sha256: bb09cf92a6230fa65e4d8d804db6ce67230dd11fe426fc27727b8fdfc6dd572c

Contents?: true

Size: 1.08 KB

Versions: 2

Compression:

Stored size: 1.08 KB

Contents

controller :my_controller do
  spots "content"

  action :index do
    on_entry %{
      Embed("my_controller2", "content", {});

      find_view_res = find_view(__base__, {
            ".": {
            ".": {
               "__leaf__": "foo1",
                "+": {
                  ".": {
                   "__leaf__": "foo2"
                 }
                 }
               }
            }
      });
    }
  end
end

controller :my_controller2 do
  spots "content"

  action :index do
    on_entry %{
      my_controller2_base = __base__;

      Embed("my_controller3", "content", {});
    }
  end
end

controller :my_controller3 do
  spots "content"

  action :index do
    on_entry %{
      my_controller3_base = __base__;

      Embed("my_controller4", "content", {});
    }
  end
end

controller :my_controller4 do
  spots "content"

  action :index do
    on_entry %{
      my_controller4_base = __base__;

      Embed("my_controller5", "content", {});
    }
  end
end

controller :my_controller5 do
  action :index do
    on_entry %{
      my_controller5_base = __base__;
    }
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
flok-0.0.105 spec/kern/assets/find_view/controller9.rb
flok-0.0.103 spec/kern/assets/find_view/controller9.rb