Sha256: d22b5270825f48654426e06ec94612e4bdfa98587d9007b4862be6afe7af9701

Contents?: true

Size: 587 Bytes

Versions: 31

Compression:

Stored size: 587 Bytes

Contents

controller :my_controller do
  services :test
  spots "content"

  action :my_action do
    on_entry %{
      Embed("other", "content", {});
    }

    on "next", %{
      Goto("my_other_action")
    }
  end

  action :my_other_action do
    on_entry %{
      Embed("other2", "content", {});
    }
  end
end

controller :other do
  services :test

  action :index do
    on_entry %{
      other_bp = __base__;
      kern_log("My bp is: " + __base__)
    }
  end
end

controller :other2 do
  services :test

  action :index do
    on_entry %{
      other_bp2 = __base__;
    }
  end
end

Version data entries

31 entries across 31 versions & 1 rubygems

Version Path
flok-0.0.84 spec/kern/assets/test_service/controller3.rb
flok-0.0.83 spec/kern/assets/test_service/controller3.rb
flok-0.0.82 spec/kern/assets/test_service/controller3.rb
flok-0.0.81 spec/kern/assets/test_service/controller3.rb
flok-0.0.80 spec/kern/assets/test_service/controller3.rb
flok-0.0.79 spec/kern/assets/test_service/controller3.rb
flok-0.0.78 spec/kern/assets/test_service/controller3.rb
flok-0.0.77 spec/kern/assets/test_service/controller3.rb
flok-0.0.76 spec/kern/assets/test_service/controller3.rb
flok-0.0.75 spec/kern/assets/test_service/controller3.rb
flok-0.0.74 spec/kern/assets/test_service/controller3.rb