This repository was archived by the owner on Jul 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added rails admin link to superuser menu and renamed relevant ability
- Loading branch information
Showing
2 changed files
with
4 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
d5e9bd8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What exactly is the difference between rails_admin and active_admin?
d5e9bd8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
They are two different Ruby gems. I believe Rails Admin had better Rails 4 compatibility but I'm not sure. In any event, we switched to Rails Admin for v4.
d5e9bd8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cool, thank you for the response. Also, as per my question yesterday, are admin and superuser the same thing? If so, is the superuser menu the "admin" tab at the top of the page?
d5e9bd8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No,
admin
andsuperuser
are two different roles. Admins can manage everything within the app interface and is designed for managers of the media lending organization, whereas superusers can user Rails Admin to modify the database directly (and potentially have other access), and is intended only for a select number of developers / system administrators. In the context of the commit message, the "superuser menu" means the "Admin" menu when viewed as asuperuser
. Does that make sense?