2014-03-22 18:21:45 +01:00
|
|
|
ActiveAdmin.register Failedlogin do
|
|
|
|
menu :parent => "Others"
|
|
|
|
actions :all, :except => [:edit]
|
|
|
|
|
|
|
|
filter :login
|
|
|
|
filter :password
|
|
|
|
filter :created_at
|
|
|
|
|
|
|
|
index do
|
|
|
|
column :id
|
|
|
|
column :login
|
|
|
|
column :password
|
|
|
|
column :ip_address
|
|
|
|
column :created_at
|
2014-10-06 17:42:02 +02:00
|
|
|
actions
|
2014-03-22 18:21:45 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|