Add order page for favgroups

This commit is contained in:
Toks
2015-06-30 10:02:07 -04:00
parent bb879cc4fd
commit 799b9ebe19
6 changed files with 42 additions and 4 deletions

View File

@@ -0,0 +1,9 @@
class FavoriteGroupOrdersController < ApplicationController
respond_to :html, :xml, :json, :js
before_filter :member_only
def edit
@favorite_group = FavoriteGroup.find(params[:favorite_group_id])
respond_with(@favorite_group)
end
end