separated out ip ban logic from regular bans, users can no longer register if an ip ban is in place

This commit is contained in:
albert
2010-03-18 17:55:57 -04:00
parent dcf8d0df4c
commit e46bfb3d76
12 changed files with 124 additions and 33 deletions

5
test/factories/ip_ban.rb Normal file
View File

@@ -0,0 +1,5 @@
Factory.define(:ip_ban) do |f|
f.creator {|x| x.association(:user)}
f.reason {Faker::Lorem.words}
f.ip_addr "127.0.0.1"
end

View File

@@ -5,6 +5,7 @@ Factory.define(:user) do |f|
f.email {Faker::Internet.email}
f.default_image_size "medium"
f.base_upload_limit 10
f.ip_addr "127.0.0.1"
end
Factory.define(:banned_user, :parent => :user) do |f|