foodsoft/app/controllers/finance/group_order_articles_controller.rb
2012-06-21 17:19:00 +02:00

10 lines
293 B
Ruby

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