You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# rails console# List the users – I'm assuming there aren't any/many at this stageppOpenConferenceWare::User.pluck(:id,:email)# Update the initial users who you want as adminsOpenConferenceWare::User.where(:id=>[2,3]).update_all(admin: true)
In a production environment, or if the 'development' auth mechanism is disabled, there's no documented path to grant admin rights to an initial user.
The text was updated successfully, but these errors were encountered: