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.105 spec/kern/assets/test_service/controller3.rb
flok-0.0.103 spec/kern/assets/test_service/controller3.rb
flok-0.0.102 spec/kern/assets/test_service/controller3.rb
flok-0.0.101 spec/kern/assets/test_service/controller3.rb
flok-0.0.100 spec/kern/assets/test_service/controller3.rb
flok-0.0.99 spec/kern/assets/test_service/controller3.rb
flok-0.0.98 spec/kern/assets/test_service/controller3.rb
flok-0.0.97 spec/kern/assets/test_service/controller3.rb
flok-0.0.96 spec/kern/assets/test_service/controller3.rb
flok-0.0.95 spec/kern/assets/test_service/controller3.rb
flok-0.0.94 spec/kern/assets/test_service/controller3.rb
flok-0.0.93 spec/kern/assets/test_service/controller3.rb
flok-0.0.92 spec/kern/assets/test_service/controller3.rb
flok-0.0.91 spec/kern/assets/test_service/controller3.rb
flok-0.0.90 spec/kern/assets/test_service/controller3.rb
flok-0.0.89 spec/kern/assets/test_service/controller3.rb
flok-0.0.88 spec/kern/assets/test_service/controller3.rb
flok-0.0.87 spec/kern/assets/test_service/controller3.rb
flok-0.0.86 spec/kern/assets/test_service/controller3.rb
flok-0.0.85 spec/kern/assets/test_service/controller3.rb