A calendar management project, for events and activities related to communities fighting for freedoms.
This can be related to software, art, data, hardware, content, commons, internet.
https://www.agendadulibre.org
This can be related to software, art, data, hardware, content, commons, internet.
https://www.agendadulibre.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
528 B
26 lines
528 B
# Managing the new agenda moderators, from active_admin |
|
ActiveAdmin.register AdminUser do |
|
index do |
|
column :email |
|
column :current_sign_in_at |
|
column :last_sign_in_at |
|
column :sign_in_count |
|
actions |
|
end |
|
|
|
filter :email |
|
|
|
form do |f| |
|
f.inputs 'Admin Details' do |
|
f.input :email |
|
f.input :password |
|
f.input :password_confirmation |
|
end |
|
f.actions |
|
end |
|
controller do |
|
def permitted_params |
|
params.permit admin_user: %i[email password password_confirmation] |
|
end |
|
end |
|
end
|
|
|