Files
danbooru/app/controllers/pool_orders_controller.rb
2020-03-20 18:03:01 -05:00

9 lines
184 B
Ruby

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