* GET /bans.json * GET /bans/1.json * GET /ip_bans.json * POST /ip_bans.json * DELETE /ip_bans.json * GET /mod_actions.json * GET /posts/1/events.json * POST /saved_searches.json * DELETE /saved_searches/1.json * GET /super_voters.json
26 lines
531 B
Ruby
26 lines
531 B
Ruby
class IpBansController < ApplicationController
|
|
respond_to :html, :xml, :json
|
|
before_filter :moderator_only
|
|
|
|
def new
|
|
@ip_ban = IpBan.new
|
|
end
|
|
|
|
def create
|
|
@ip_ban = IpBan.create(params[:ip_ban])
|
|
respond_with(@ip_ban)
|
|
end
|
|
|
|
def index
|
|
@search = IpBan.search(params[:search])
|
|
@ip_bans = @search.order("id desc").paginate(params[:page], :limit => params[:limit])
|
|
respond_with(@ip_bans)
|
|
end
|
|
|
|
def destroy
|
|
@ip_ban = IpBan.find(params[:id])
|
|
@ip_ban.destroy
|
|
respond_with(@ip_ban)
|
|
end
|
|
end
|