Asap 222 admin page tweaks - #304
Conversation
| expect(page).to have_content "Signed in successfully" | ||
| expect(page).to have_no_selector "#new_user" | ||
| end | ||
| # clear_emails |
There was a problem hiding this comment.
This test is unrelated. I must have forgotten to return it at some point in the past. 🤯
@4dh oof, I forgot that I hardcoded the pager not to show up with less than 25 items here. I did that so that the div with all the spacing and border would not appear all the time. This is a good catch. As of 26c66c2, I've changed that hardcoded value to read whatever is set in the Kaminari configuration. If you pull, I think (hope) the pager will show up now. |



Soon we are going to add more users to the APP for SLC. We have a bunch of folks from Georgia in the system. We'd like to enhance the user management interface to make it easier to maintain accounts.
This PR introduces:
To test pagination, go to config/initializers/kaminari.rb and set config.default_per_page to a lower value like 1 or 2. This makes testing pagination easier.
The new user UI pieces and potentially email resending on staging.
No