mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-01-16 05:17:50 -05:00
Now only admins can create/edit forums, or mess with roles.
To add an admin user:
rails c
m = Member.find('skud')
r = Role.create(:name => 'admin')
r.members << m
We'll have to do this on the server to bootstrap the admin stuff.
Though actually, we should really write a rake task to generalise this.
1.9 KiB
1.9 KiB