Skip to content

Adding Administrators

Trey Terrell edited this page Mar 19, 2015 · 1 revision

Adding Administrators

For the moment you'll have to add administrators through the rails console. When you're in, just do the following:

u = User.where(:username => "onidhere").first
u.group_list = "admin"
u.save