We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5de02f commit 6b22ee1Copy full SHA for 6b22ee1
native-installation-instructions.md
@@ -88,3 +88,14 @@ bundle exec rails server
88
```bash
89
bundle exec rake
90
```
91
+
92
+## Setting up a local admin user
93
94
+- To assign admin permissions to a local user run the below commands using the member's email address.
95
+- Note that a member is effectively a user.
96
97
+```bash
98
+rails c
99
+user = Member.find_by(email: 'test@example.com')
100
+user.add_role :admin
101
+```
0 commit comments