mirror of
https://github.com/moebooru/moebooru
synced 2025-08-22 01:47:48 +00:00
branch : moe extra : convert_revision : svn%3A2d28d66d-8d94-df11-8c86-00306ef368cb/trunk/moe%405
12 lines
219 B
Ruby
12 lines
219 B
Ruby
class BannedController < ApplicationController
|
|
layout 'bare'
|
|
def index
|
|
@ban = get_ip_ban()
|
|
if not @ban
|
|
redirect_to :controller => "static", :action => "index"
|
|
return
|
|
end
|
|
end
|
|
|
|
end
|