# File data/examples/ruby/Borges/SushiNet/StoreBrowseFrame.rb, line 3
  def actions
    actions = [:home, :browse]

    if session.has_cart? then
      actions << :checkout
    else
      actions
    end
  end