I got ActiveAdmin running with [email protected]//password, but I want to change these credentials. Anyone know how to change them?
Best way to do this would be to change it from the rails console :
admin = AdminUser.find_by_email("[email protected]")
admin.password = "newPassword"
admin.save