Skip to content

Instantly share code, notes, and snippets.

@scytacki
Created August 17, 2022 14:33
Show Gist options
  • Save scytacki/eca802edc12cdae573babb29a64577d9 to your computer and use it in GitHub Desktop.
Save scytacki/eca802edc12cdae573babb29a64577d9 to your computer and use it in GitHub Desktop.
List LARA admins users
require('csv')
users = User.where(is_admin: true)
output = CSV.generate { |csv|
users.each{ |user|
csv << [
user.id,
user.email,
user.last_sign_in_at
]
}
};nil
puts output
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment