Rachel Green
Rachel Green
In the case show view, use a partial and collection to render the list of agencies. Rather than using the index of the agencies array to add the vertical dividers,...
Add a partial that renders the content of an individual table row in the agencies index view, lines 13-16 in `app/views/agencies/index.html.erb`. Then update the view to use the partial and...
The agency model now contains a `location` method that returns a location object populated by the corresponding address. The location object has its own implementation of `to_s`. Update the `geocoded_by`...
- [ ] Install and configure the `strong_migrations` gem - [ ] Add a section to `docs/DEVELOPMENT.md` explaining that we use the `strong_migrations` gem and that suggestions on how to...
Create `app/models/rollout.rb`. This will be a value object, not an ActiveRecord model - a lot like the `DateRange` object. The `rollout` object should: - inherit from `ValueObject` - receive a...
Configure CKEditor to strip any format when pasting text. The feature to enable is described in the CKEditor documentation [here](https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_config.html#cfg-forcePasteAsPlainText). Use the instructions [here](https://github.com/galetahub/ckeditor#customize-ckeditor) to set the config properly for...
Create a new rake task to add a rollout. This includes - Adding a new file `lib/tasks/rollouts.rake` - Adding a `rollouts::add` task that takes in name, description, and username parameters....
Add functionality to search for cases based on cause of death. Note that this is currently blocked by #3005
If a user tries to sign up for the site using an email that is already used for another account, redirect them to the sign in page. Specifically, what I'm...