Files
danbooru/app/controllers/pool_orders_controller.rb
2011-09-13 13:28:33 -04:00

10 lines
203 B
Ruby

class PoolOrdersController < ApplicationController
respond_to :html, :xml, :json, :js
before_filter :member_only
def edit
@pool = Pool.find(params[:pool_id])
respond_with(@pool)
end
end