28 lines
526 B
Ruby
28 lines
526 B
Ruby
class IpBansController < ApplicationController
|
|
before_filter :moderator_only
|
|
|
|
def new
|
|
@ip_ban = IpBan.new
|
|
end
|
|
|
|
def create
|
|
@ip_ban = IpBan.create(params[:ip_ban])
|
|
|
|
if @ip_ban.errors.any?
|
|
render :action => "new"
|
|
else
|
|
redirect_to ip_bans_path
|
|
end
|
|
end
|
|
|
|
def index
|
|
@search = IpBan.search(params[:search])
|
|
@ip_bans = @search.order("id desc").paginate(params[:page], :limit => params[:limit])
|
|
end
|
|
|
|
def destroy
|
|
@ip_ban = IpBan.find(params[:id])
|
|
@ip_ban.destroy
|
|
end
|
|
end
|