diff --git a/accounts.html b/accounts.html index 630c01d..b3ea756 100644 --- a/accounts.html +++ b/accounts.html @@ -116,12 +116,12 @@
There are 3 different user roles:
There are 6 different user permissions you can assign to each user:
+There are 6 different user permissions admin can assign to each user:
Guest account is predefined account and it is disabled by default since no permissions is assigned.
Admin can enable Guest account which will allow everyone to interact with the repository based on the Guest account permissions.
+If you forgot your admin password you can follow these steps to reset it:
+/private/users.json
to a safe place/private/users.json.blank
over /private/users.json
or simply refresh your browseradmin/admin123
/private/users.json
replacing the templateNote: If you're using database Auth adapter then simply run this query to set default password back to admin123
:
UPDATE `users`
+SET `password` = '$2y$10$Nu35w4pteLfc7BDCIkDPkecjw8wsH8Y2GMfIewUbXLT7zzW6WOxwq'
+WHERE `username` = 'admin';