planner
planner copied to clipboard
🗓 the main codebar site
To have more workshops seeded in local planner database I've added the option of seeding high volumes of workshops or fewer based on the `SEED_HIGH_VOLUME_OF_WORKSHOPS` env variable. When set to...
In `db/seeds.rb` we are creating a small amount of workshops. ```ruby Rails.logger.info "Creating a lot of old workshops..." past_workshops_since_n_months = 5 * 12 past_workshops_one_per_n_months = 6 past_workshops_count = past_workshops_since_n_months/past_workshops_one_per_n_months past_workshops...
There have been a number of requests recently from organisers wanting to contact their chapter members by email. Organisers have access to chapter member emails and the only way for...
I'm not completely happy with this yet. I've written some helper methods to grab all of the 'things' a member is attending and find them once, when the controller method...
This refactors out a Controller method to a plain ruby object. I'm doing this so that I can access it from other Controllers where we need to update attendance at...
The endpoint `/admin/announcements/new` has no limits on which chapters you can contact. We should reduce that to only those that an admin has responsibility for, ie their chapter
## Description of the issue 📄 Currently, the only way to sign up to codebar is with a GitHub account. This present a barrier to people who don't know what...
Fixes #2176 This PR adds functionality for admin to edit and delete notes associated with members. Features: - Note pencil icon reused for edit button and delete button added -...
## Proposal We should switch to a more traditional search pattern, where a user fills in a search form, the application queries the database, and returns a small set of...
## Description of the issue 📄 Admin are unable to edit or delete notes on student or coach profiles, they can only create new ones. Currently, there's no functionality for...