I\'ve just setup gitlab, but I\'m completely lost with regards to admin user. The wiki seems silent about this topic, and google hasn\'t been of help either.
So, how do
You can also set admin permissions to a user by doing something like this in the rails console:
User.find_by_email("user@example.org") do |i| i.admin = true i.save end