foodsoft/app/controllers/finance/group_order_articles_controller.rb

11 lines
293 B
Ruby
Raw Normal View History

2012-06-21 17:19:00 +02:00
class Finance::GroupOrderArticlesController < ApplicationController
before_filter :authenticate_finance
layout false # We only use this controller to server js snippets, no need for layout rendering
def new
@order_article = OrderArticle.find(params[:order_article_id])
end
end