We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 643dc73 commit 51a3124Copy full SHA for 51a3124
lib/generators/active_admin/install/templates/admin_user.rb.erb
@@ -4,14 +4,19 @@ ActiveAdmin.register <%= @user_class %> do
4
5
<% end -%>
6
index do
7
+ selectable_column
8
+ id_column
9
column :email
10
column :current_sign_in_at
- column :last_sign_in_at
11
column :sign_in_count
- default_actions
12
+ column :created_at
13
+ actions
14
end
15
16
filter :email
17
+ filter :current_sign_in_at
18
+ filter :sign_in_count
19
+ filter :created_at
20
21
form do |f|
22
f.inputs "Admin Details" do
0 commit comments