Sha256: 7fb6299644474dd277eb81a1ddd9b8ae474ac56fcd5102f0a23718d6858b3c85
Contents?: true
Size: 829 Bytes
Versions: 31
Compression:
Stored size: 829 Bytes
Contents
controller :nav do spots "content" action :index do on_entry %{ Embed("my_controller", "content", {}); } on "next_nav", %{ Goto("other_action"); } end action :other_action do end end controller :my_controller do spots "content" action :my_action do on_entry %{ my_controller_bp = __base__; Embed("other", "content", {}); } on "next", %{ Push("my_other_action") } end action :my_other_action do on_entry %{ Embed("other2", "content", {}); } on "back", %{ Pop(); } end end controller :other do services :test action :index do on_entry %{ other_bp = __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