Since we’ve been able to create different user types – now we need to set up different user views for these user types to really take advantage of the function. We’ll create two drop-down menus for our users, one for admins and one for beta users. Depending on their user type they’ll see one or the other, neither, or both. …
Rails – Adding a Users Index with Devise
As the application administrator I want to be able to view who all has signed up for accounts in my application and the last time they signed in. This view and functionality isn’t built into devise, so we’re going to be coding it ourselves. First step: Adding our Routes so we can add a users index with devise First we’re …