diff options
author | Peter Kozak <spag@golwen.net> | 2013-02-10 08:09:05 +0000 |
---|---|---|
committer | Peter Kozak <spag@golwen.net> | 2013-02-10 08:09:05 +0000 |
commit | 4c9cc92c0a49ec34c8bf00e31d1710450fb533fa (patch) | |
tree | 938c21ad5fece8a5b36c2689e5f7f8b50ca72e29 /app/models/intruder.rb | |
parent | 5fba89e83722e11232b1130a1a939d55aed94387 (diff) |
firewall blacklist model added
Diffstat (limited to 'app/models/intruder.rb')
-rw-r--r-- | app/models/intruder.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/models/intruder.rb b/app/models/intruder.rb new file mode 100644 index 0000000..192d64d --- /dev/null +++ b/app/models/intruder.rb @@ -0,0 +1,3 @@ +class Intruder < ActiveRecord::Base + attr_accessible :list_type, :key, :points, :bans, :ban_last, :ban_end, :contact_ip, :contact_port, :contact_count, :contact_last, :contacts_per_second, :contacts_per_second_max, :user_agent, :to_user, :comment +end |