├── .dockerignore ├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── ISSUE_TEMPLATE.md │ └── config.yml ├── dependabot.yml └── workflows │ └── ruby.yml ├── .gitignore ├── .haml-lint.yml ├── .rspec ├── .rubocop.yml ├── .ruby-version ├── CONTRIBUTING.md ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Makefile ├── Procfile ├── README.md ├── Rakefile ├── app ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ ├── .keep │ │ ├── GitHub_Logo_White.png │ │ ├── Icon-128.png │ │ ├── Icon-196.png │ │ ├── benevity-logo.png │ │ ├── bg.jpg │ │ ├── codebar-girl.gif │ │ ├── codebar-social.jpg │ │ ├── codebar-stories-banner.png │ │ ├── collaboration.png │ │ ├── favicon.ico │ │ ├── festival │ │ │ └── codebar-festival-logo-light.png │ │ ├── give-as-you-live.png │ │ ├── how-to-support-us │ │ │ ├── become-a-coach.jpg │ │ │ ├── become-an-organiser.jpg │ │ │ ├── codebar-festival-2023.jpg │ │ │ ├── hackney-half.jpeg │ │ │ └── volunteer.jpg │ │ ├── logo-square.png │ │ ├── logo.png │ │ ├── nyc-workshop.jpg │ │ ├── ok.png │ │ ├── open-collective-logo.png │ │ ├── social-summary-card-image.png │ │ ├── sponsors │ │ │ ├── 8th-Light.png │ │ │ ├── StreetTeam.png │ │ │ ├── bloomberg.png │ │ │ ├── gds-logo.png │ │ │ ├── google.png │ │ │ ├── mozilla.png │ │ │ ├── pivotal.png │ │ │ ├── shutl_logo.png │ │ │ ├── softwire.png │ │ │ ├── the-guardian.png │ │ │ ├── ticketmaster.png │ │ │ └── ustwo.png │ │ ├── star-rating.gif │ │ └── uncodebar-group.jpeg │ ├── javascripts │ │ ├── application.js │ │ ├── dietary-restrictions.js │ │ ├── how-you-found-us.js │ │ ├── invitations.js │ │ ├── jsimple-star-rating.min.js │ │ ├── payments.js │ │ └── subscriptions-toggle.js │ └── stylesheets │ │ ├── _bootstrap-custom.scss │ │ ├── animations.scss │ │ ├── application.scss │ │ ├── email.css │ │ ├── main.scss │ │ └── partials │ │ ├── _colors.sass │ │ ├── _hero.scss │ │ ├── _layout.scss │ │ ├── _screen_readers.scss │ │ ├── _social_media.scss │ │ └── _star-rating.scss ├── controllers │ ├── admin │ │ ├── announcements_controller.rb │ │ ├── application_controller.rb │ │ ├── bans_controller.rb │ │ ├── chapters │ │ │ ├── feedback_controller.rb │ │ │ └── organisers_controller.rb │ │ ├── chapters_controller.rb │ │ ├── contacts_controller.rb │ │ ├── events_controller.rb │ │ ├── feedback_controller.rb │ │ ├── groups_controller.rb │ │ ├── invitation_controller.rb │ │ ├── invitations_controller.rb │ │ ├── meeting_invitations_controller.rb │ │ ├── meetings_controller.rb │ │ ├── member_notes_controller.rb │ │ ├── member_search_controller.rb │ │ ├── members_controller.rb │ │ ├── portal_controller.rb │ │ ├── sponsors_controller.rb │ │ ├── testimonials_controller.rb │ │ └── workshops_controller.rb │ ├── application_controller.rb │ ├── auth_services_controller.rb │ ├── auth_sessions_controller.rb │ ├── chapter_controller.rb │ ├── concerns │ │ ├── admin │ │ │ ├── sponsor_concerns.rb │ │ │ └── workshop_concerns.rb │ │ ├── invitation_controller_concerns.rb │ │ ├── mailing_list_concerns.rb │ │ ├── member_concerns.rb │ │ └── workshop_invitation_concerns.rb │ ├── contact_preferences_controller.rb │ ├── dashboard_controller.rb │ ├── donations_controller.rb │ ├── events_controller.rb │ ├── feedback_controller.rb │ ├── invitation_controller.rb │ ├── invitations_controller.rb │ ├── mailing_lists_controller.rb │ ├── meetings_controller.rb │ ├── member │ │ └── details_controller.rb │ ├── members_controller.rb │ ├── pages_controller.rb │ ├── payments_controller.rb │ ├── sponsors_controller.rb │ ├── subscriptions_controller.rb │ ├── super_admin │ │ └── application_controller.rb │ ├── terms_and_conditions_controller.rb │ ├── waiting_lists_controller.rb │ └── workshops_controller.rb ├── form_models │ ├── mailing_list_form.rb │ └── terms_and_conditions_form.rb ├── helpers │ ├── README.md │ ├── application_helper.rb │ ├── email_header_helper.rb │ ├── email_helper.rb │ └── event_helper.rb ├── jobs │ └── application_job.rb ├── mailers │ ├── application_mailer.rb │ ├── contact_mailer.rb │ ├── event_invitation_mailer.rb │ ├── feedback_request_mailer.rb │ ├── meeting_invitation_mailer.rb │ ├── member_mailer.rb │ ├── virtual_workshop_invitation_mailer.rb │ └── workshop_invitation_mailer.rb ├── models │ ├── README.md │ ├── address.rb │ ├── announcement.rb │ ├── application_record.rb │ ├── attendance_warning.rb │ ├── auth_service.rb │ ├── ban.rb │ ├── chapter.rb │ ├── concerns │ │ ├── .keep │ │ ├── date_time_concerns.rb │ │ ├── invitable.rb │ │ ├── invitation_concerns.rb │ │ ├── listable.rb │ │ ├── permissions.rb │ │ └── workshop_invitation_manager_concerns.rb │ ├── contact.rb │ ├── eligibility_inquiry.rb │ ├── event.rb │ ├── feedback.rb │ ├── feedback_request.rb │ ├── group.rb │ ├── group_announcement.rb │ ├── invitation.rb │ ├── invitation_manager.rb │ ├── meeting.rb │ ├── meeting_invitation.rb │ ├── meeting_talk.rb │ ├── member.rb │ ├── member_note.rb │ ├── permission.rb │ ├── role.rb │ ├── sponsor.rb │ ├── sponsors_search.rb │ ├── sponsorship.rb │ ├── subscription.rb │ ├── testimonial.rb │ ├── tutorial.rb │ ├── waiting_list.rb │ ├── workshop.rb │ ├── workshop_calendar.rb │ ├── workshop_invitation.rb │ └── workshop_sponsor.rb ├── policies │ ├── admin_portal_policy.rb │ ├── application_policy.rb │ ├── chapter_policy.rb │ ├── contact_policy.rb │ ├── event_policy.rb │ ├── group_policy.rb │ ├── member_note_policy.rb │ ├── organiser_policy.rb │ ├── sponsor_policy.rb │ ├── testimonial_policy.rb │ └── workshop_policy.rb ├── presenters │ ├── address_presenter.rb │ ├── base_presenter.rb │ ├── chapter_presenter.rb │ ├── contact_presenter.rb │ ├── event_presenter.rb │ ├── invitation_presenter.rb │ ├── meeting_presenter.rb │ ├── member_presenter.rb │ ├── sponsor_presenter.rb │ ├── virtual_workshop_presenter.rb │ ├── waiting_list_presenter.rb │ └── workshop_presenter.rb ├── services │ └── auditor.rb ├── uploaders │ ├── avatar_uploader.rb │ └── image_uploader.rb └── views │ ├── admin │ ├── announcements │ │ ├── edit.html.haml │ │ ├── index.html.haml │ │ └── new.html.haml │ ├── attendance_warnings │ │ └── _attendance_warning.html.haml │ ├── bans │ │ ├── _ban.html.haml │ │ └── new.html.haml │ ├── chapters │ │ ├── edit.html.haml │ │ ├── new.html.haml │ │ ├── organisers │ │ │ └── index.html.haml │ │ └── show.html.haml │ ├── contacts │ │ └── index.html.haml │ ├── eligibility_inquiries │ │ └── _eligibility_inquiry.html.haml │ ├── events │ │ ├── _attendances.html.haml │ │ ├── _event.html.haml │ │ ├── _form.html.haml │ │ ├── _invitation_management.html.haml │ │ ├── edit.html.haml │ │ ├── new.html.haml │ │ └── show.html.haml │ ├── feedback │ │ └── index.html.haml │ ├── groups │ │ ├── new.html.haml │ │ └── show.html.haml │ ├── meetings │ │ ├── _form.html.haml │ │ ├── _invitation_management.html.haml │ │ ├── _meeting.html.haml │ │ ├── edit.html.haml │ │ ├── new.html.haml │ │ └── show.html.haml │ ├── member_notes │ │ └── _member_note.html.haml │ ├── member_search │ │ ├── _search_form.html.haml │ │ ├── index.html.haml │ │ └── show.html.haml │ ├── members │ │ ├── _actions.html.haml │ │ ├── _note.html.haml │ │ ├── _profile.html.haml │ │ ├── events.html.haml │ │ ├── index.html.haml │ │ └── show.html.haml │ ├── portal │ │ ├── guide.html.haml │ │ └── index.html.haml │ ├── shared │ │ └── _title.html.haml │ ├── sponsors │ │ ├── _contact_fields.html.haml │ │ ├── _form.html.haml │ │ ├── edit.html.haml │ │ ├── index.html.haml │ │ ├── new.html.haml │ │ └── show.html.haml │ ├── subscriptions │ │ └── _index.html.haml │ ├── testimonials │ │ └── index.html.haml │ ├── workshop │ │ ├── _attendances.html.haml │ │ └── _waiting_list.html.haml │ └── workshops │ │ ├── _activity.html.haml │ │ ├── _edit_form.html.haml │ │ ├── _form.html.haml │ │ ├── _invitation_management.html.haml │ │ ├── _shared_form.html.haml │ │ ├── _virtual_workshop_fields.html.haml │ │ ├── _workshop.html.haml │ │ ├── changes.html.haml │ │ ├── edit.html.haml │ │ ├── index.html.haml │ │ ├── new.html.haml │ │ ├── send_invites.html.haml │ │ └── show.html.haml │ ├── chapter │ ├── _subscriptions.html.haml │ └── show.html.haml │ ├── coach │ └── _coach.html.haml │ ├── contact_mailer │ └── subscription_notification.html.haml │ ├── contact_preferences │ └── show.html.haml │ ├── dashboard │ ├── attendance_policy.html.haml │ ├── code.html.haml │ ├── dashboard.html.haml │ ├── effective-teacher-guide.html.haml │ ├── faq.html.haml │ ├── participant_guide.html.haml │ ├── show.html.haml │ └── wall_of_fame.html.haml │ ├── errors │ ├── error.html.haml │ └── not_found.html.haml │ ├── event_invitation_mailer │ ├── attending.html.haml │ ├── invite_coach.html.haml │ └── invite_student.html.haml │ ├── events │ ├── _event.html.haml │ ├── _event_actions.html.haml │ ├── _event_sponsors.html.haml │ ├── _events.html.haml │ ├── _faq.html.haml │ ├── index.html.haml │ └── show.html.haml │ ├── feedback │ └── show.html.haml │ ├── feedback_request_mailer │ └── request_feedback.html.haml │ ├── invitation │ ├── _coach.html.haml │ ├── _student.html.haml │ ├── _waiting_list.html.haml │ └── show.html.haml │ ├── invitations │ ├── index.html.haml │ └── show.html.haml │ ├── layouts │ ├── _admin_menu.html.haml │ ├── _footer.html.haml │ ├── _member_menu.html.haml │ ├── _messages.html.haml │ ├── _navigation.html.haml │ ├── _organiser_menu.html.haml │ ├── application.html.haml │ ├── email.html.erb │ ├── mailer.html.erb │ └── mailer.text.erb │ ├── meeting_invitation_mailer │ ├── _agenda.html.haml │ ├── _cancel_attendance.html.haml │ ├── approve_from_waitlist.html.haml │ ├── attendance_reminder.html.haml │ ├── attending.html.haml │ └── invite.html.haml │ ├── meetings │ ├── _meeting.html.haml │ ├── _meeting_actions.html.haml │ └── show.html.haml │ ├── member │ └── details │ │ └── edit.html.haml │ ├── member_mailer │ ├── attendance_warning.html.haml │ ├── ban.html.haml │ ├── eligibility_check.html.haml │ ├── welcome_coach.html.haml │ └── welcome_student.html.haml │ ├── members │ ├── _avatar_listing.html.haml │ ├── _coach_invite_subscriptions.html.haml │ ├── _new.html.haml │ ├── _organisers_grid.html.haml │ ├── _student_invite_subscriptions.html.haml │ ├── _testimonials.html.haml │ ├── edit.html.haml │ ├── new.html.haml │ ├── show.html.haml │ └── step2.html.haml │ ├── pages │ ├── breach-code-of-conduct.html.haml │ ├── codebar-stories-podcast.html.haml │ ├── cookie-policy.html.haml │ ├── how-to-support-us.html.haml │ └── privacy-policy.html.haml │ ├── public_activity │ └── sponsor │ │ ├── _admin_contact_subscribe.html.haml │ │ ├── _admin_contact_unsubscribe.html.haml │ │ ├── _contact_subscribe.html.haml │ │ └── _contact_unsubscribe.html.haml │ ├── shared │ ├── _announcements.html.haml │ ├── _donation_platforms.html.haml │ ├── _festival_banner.html.haml │ ├── _meta_tags.html.haml │ ├── _newsletter.html.haml │ ├── _pagination.html.haml │ ├── _social_media.html.haml │ ├── _sponsors.html.haml │ └── _venue.html.haml │ ├── shared_mailers │ ├── _body_header.html.haml │ ├── _footer.html.haml │ ├── _header.html.haml │ ├── _social.html.haml │ └── _venue.html.haml │ ├── sponsors │ └── index.html.haml │ ├── subscriptions │ └── index.html.haml │ ├── terms_and_conditions │ └── show.html.haml │ ├── virtual_workshop_invitation_mailer │ ├── _how_to_join_info.html.haml │ ├── attending.html.haml │ ├── attending_reminder.html.haml │ ├── invite_coach.html.haml │ ├── invite_student.html.haml │ └── waiting_list_reminder.html.haml │ ├── virtual_workshops │ └── show.html.haml │ ├── workshop_invitation_mailer │ ├── attending.html.haml │ ├── attending_reminder.html.haml │ ├── invite_coach.html.haml │ ├── invite_student.html.haml │ ├── notify_waiting_list.html.haml │ └── waiting_list_reminder.html.haml │ └── workshops │ ├── _actions.html.haml │ ├── _meta_tags.html.haml │ ├── _workshop.html.haml │ └── show.html.haml ├── bin ├── bundle ├── dadmin ├── ddown ├── delayed_job ├── dexec ├── drails ├── drake ├── drspec ├── dserver ├── dstart ├── dstop ├── dup ├── rails ├── rake ├── rubocop ├── setup └── update ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── carrier_wave.rb │ ├── commonmarker.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── delayed_job.rb │ ├── filter_parameter_logging.rb │ ├── flodesk.rb │ ├── haml_markdown.rb │ ├── inflections.rb │ ├── locale.rb │ ├── mime_types.rb │ ├── omniauth.rb │ ├── pagy.rb │ ├── permissions_policy.rb │ ├── premailer.rb │ ├── rolify.rb │ ├── rollbar.rb │ ├── secret_token.rb │ ├── session_store.rb │ ├── simple_form.rb │ ├── simple_form_bootstrap.rb │ ├── stripe.rb │ └── wrap_parameters.rb ├── locales │ ├── admin.de.yml │ ├── admin.en.yml │ ├── admin.en_AU.yml │ ├── admin.en_GB.yml │ ├── admin.en_US.yml │ ├── admin.es.yml │ ├── admin.fi.yml │ ├── admin.fr.yml │ ├── admin.no.yml │ ├── de.yml │ ├── en.rb │ ├── en.yml │ ├── en_AU.yml │ ├── en_GB.yml │ ├── en_US.yml │ ├── es.yml │ ├── fi.yml │ ├── fr.yml │ ├── no.yml │ ├── simple_form.de.yml │ ├── simple_form.en.yml │ └── simple_form.fr.yml ├── puma.rb ├── routes.rb ├── sitemap.rb └── storage.yml ├── crowdin.yml ├── db ├── migrate │ ├── 20131017221407_create_members.rb │ ├── 20131020223957_create_sessions.rb │ ├── 20131020235644_create_invitations.rb │ ├── 20131021011352_add_token_to_invitation.rb │ ├── 20131021011859_add_index_to_invitation_token.rb │ ├── 20131021040356_add_unsubscribed_to_member.rb │ ├── 20131021182241_add_seats_to_session.rb │ ├── 20131024223507_create_roles.rb │ ├── 20131024224307_create_member_role.rb │ ├── 20131029210620_create_courses.rb │ ├── 20131102132756_create_sponsors.rb │ ├── 20131102141049_create_address.rb │ ├── 20131103174325_create_sponsor_sessions.rb │ ├── 20131103210723_rename_invitations_to_session_invitations.rb │ ├── 20131103212835_create_course_invitations.rb │ ├── 20131104030726_create_reminders.rb │ ├── 20131107182457_add_avatar_to_sponsor.rb │ ├── 20131110220757_add_website_to_sponsor.rb │ ├── 20131111024701_add_role_to_session_invitations.rb │ ├── 20131112221451_remove_seats_from_sessions.rb │ ├── 20131112221641_add_seats_to_sponsor.rb │ ├── 20131130211001_create_tutorials.rb │ ├── 20131130211305_create_feedbacks.rb │ ├── 20131201091346_rename_tutorials_table_name_column_to_title.rb │ ├── 20131208030221_create_meetings.rb │ ├── 20131208030336_create_meeting_talks.rb │ ├── 20131208141447_create_auth_services.rb │ ├── 20131208145950_add_can_log_in_to_users.rb │ ├── 20131221204400_add_token_to_feedbacks.rb │ ├── 20131222160002_add_rating_to_feedbacks.rb │ ├── 20140119093708_create_feedback_requests.rb │ ├── 20140202112853_remove_token_from_feedbacks.rb │ ├── 20140329201235_add_phone_number_to_members.rb │ ├── 20140403004924_create_course_tutors.rb │ ├── 20140417151614_add_name_to_meeting.rb │ ├── 20140417152406_add_description_to_meeting.rb │ ├── 20140417154809_add_slug_to_meeting.rb │ ├── 20140425155706_add_host_to_course.rb │ ├── 20140425160722_add_ticket_url_to_course.rb │ ├── 20140501015844_add_verified_to_member.rb │ ├── 20140504143819_create_job.rb │ ├── 20140504171455_add_company_to_job.rb │ ├── 20140510232842_add_invitable_to_session.rb │ ├── 20140510234035_add_city_to_address.rb │ ├── 20140610130020_create_chapters.rb │ ├── 20140610133755_create_groups.rb │ ├── 20140610155915_create_subscriptions.rb │ ├── 20140610202421_add_chapter_to_session.rb │ ├── 20140610212001_add_time_to_sessions.rb │ ├── 20140611191143_rolify_create_permissions.rb │ ├── 20140615010338_add_chapter_to_course.rb │ ├── 20140615030540_add_avatar_cache_to_sponsor.rb │ ├── 20140621234319_add_email_to_chapter.rb │ ├── 20140708114919_add_number_of_coaches_to_sponsor.rb │ ├── 20140824234126_drop_reminders.rb │ ├── 20140825005743_add_reminder_at_to_session_invitations.rb │ ├── 20140828194906_create_waiting_lists.rb │ ├── 20140908151822_add_twitter_handle_and_id_to_chapter.rb │ ├── 20140916134752_remove_verified_from_user.rb │ ├── 20141003172945_create_testimonials.rb │ ├── 20141003195205_change_testimonial_string_to_text.rb │ ├── 20141022052135_add_welcome_fields_to_member.rb │ ├── 20141203000909_create_events.rb │ ├── 20141203004824_create_sponsorships.rb │ ├── 20141203012421_add_slug_to_event.rb │ ├── 20141203034740_add_schedule_to_event.rb │ ├── 20141204011642_create_invitations_2.rb │ ├── 20141204164936_add_token_to_invitation_2.rb │ ├── 20141204173228_add_student_and_coach_spaces_to_event.rb │ ├── 20141204181137_add_coach_and_student_questionnaire_to_event.rb │ ├── 20141204181517_add_verified_and_verified_by_to_invitation.rb │ ├── 20141204221303_add_coach_description_to_event.rb │ ├── 20141204232033_add_info_to_event.rb │ ├── 20150130001852_create_member_notes.rb │ ├── 20150211023345_add_rsvp_close_time_to_sessions.rb │ ├── 20150219223111_add_slug_to_chapter.rb │ ├── 20150222110321_add_announce_only_to_event.rb │ ├── 20150224001247_add_mailing_list_id_to_group.rb │ ├── 20150328102113_add_invitable_to_event.rb │ ├── 20150409140851_create_announcements.rb │ ├── 20150409145541_create_group_announcements.rb │ ├── 20150418235316_create_bans.rb │ ├── 20150419004358_create_delayed_jobs.rb │ ├── 20150505133258_add_tito_url_to_event.rb │ ├── 20150505161414_create_chapters_events.rb │ ├── 20150508211109_add_contacts_to_sponsors.rb │ ├── 20150509200835_create_contacts.rb │ ├── 20150629202748_create_eligibility_inquiries.rb │ ├── 20150714194446_create_attendance_warnings.rb │ ├── 20150725165534_create_member_contacts.rb │ ├── 20150801134457_add_map_coords_to_address.rb │ ├── 20150814042120_add_show_faq_to_events.rb │ ├── 20150823215449_acts_as_taggable_on_migration.acts_as_taggable_on_engine.rb │ ├── 20150823215450_add_missing_unique_indices.acts_as_taggable_on_engine.rb │ ├── 20150823215451_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb │ ├── 20150823215452_add_missing_taggable_index.acts_as_taggable_on_engine.rb │ ├── 20150823215453_change_collation_for_tag_names.acts_as_taggable_on_engine.rb │ ├── 20151110180108_add_togglable_fields_to_event.rb │ ├── 20160123192121_add_approve_by_to_job.rb │ ├── 20160124024112_add_preferred_pronoun_to_member.rb │ ├── 20160124225727_add_active_to_chapter.rb │ ├── 20160201210920_change_meeting_fields.rb │ ├── 20160207151405_create_meeting_invitation.rb │ ├── 20160211182925_change_meeting_description_to_text.rb │ ├── 20160228102639_change_preferred_pronoun_to_pronouns_in_member.rb │ ├── 20160306231907_rename_table_sessions_to_workshop.rb │ ├── 20160306234034_rename_session_ids_to_workshop_ids.rb │ ├── 20160307015747_rename_sponsor_sessions_to_workshop_sponsors.rb │ ├── 20160307223728_rename_permissions_resource_type_value_to_workshop.rb │ ├── 20160320164227_add_attended_to_meeting_invitation.rb │ ├── 20160326003113_add_more_data_to_bans.rb │ ├── 20160424081653_create_chapters_meetings.rb │ ├── 20160424175400_add_invited_flag_to_meetings.rb │ ├── 20160523171604_add_external_event_link_to_event.rb │ ├── 20160523173346_add_more_fields_to_events.rb │ ├── 20160526182452_add_rsvp_time_to_session_invitation.rb │ ├── 20160614203328_add_target_group_to_event.rb │ ├── 20161028141043_add_rsvp_open_time_to_workshops.rb │ ├── 20161228121833_add_workshop_id_to_feedback.rb │ ├── 20180108210921_remove_time_from_workshops.rb │ ├── 20180109024411_add_rsvp_opens_at_to_workshops.rb │ ├── 20180109030511_add_accessibility_info_to_sponsors.rb │ ├── 20180110212924_add_time_zone_to_chapters.rb │ ├── 20180307221521_add_level_to_sponsors.rb │ ├── 20180313165054_rename_table_session_invitations_to_workshop_invitations.rb │ ├── 20180430001328_add_unique_index_to_meeting_slug.rb │ ├── 20180519231943_add_unique_index_to_event_slug.rb │ ├── 20180608010545_add_directions_to_addresses.rb │ ├── 20181002213441_extend_job_model.rb │ ├── 20181012015419_create_friendly_id_slugs.rb │ ├── 20181012015504_add_slug_to_job.rb │ ├── 20181013224547_add_status_to_job.rb │ ├── 20181019002645_add_description_to_chapters.rb │ ├── 20181021014646_add_image_to_chapters.rb │ ├── 20191018175052_add_ends_at_to_workshops.rb │ ├── 20200120111440_add_accepted_toc_at_to_member.rb │ ├── 20200124124311_add_opt_in_newsletter_at_to_member.rb │ ├── 20200311233721_add_virtual_to_workshop.rb │ ├── 20200312172212_add_student_and_coach_spaces_to_workshop.rb │ ├── 20200313211614_add_slack_channel_and_slack_channel_link_to_workshop.rb │ ├── 20200511151348_add_automated_rsvp_to_workshop_invitation.rb │ ├── 20200521151343_add_tutorial_to_workshop_invitation.rb │ ├── 20200522142646_add_email_index_to_member.rb │ ├── 20200721072708_update_contacts.rb │ ├── 20200805104520_add_level_to_sponsorship.rb │ ├── 20200815141515_add_token_to_contact.rb │ ├── 20201102173506_create_activities.rb │ ├── 20201109043756_add_end_dt_to_meetings_courses.rb │ ├── 20201120012424_drop_member_contacts.rb │ ├── 20201120012812_remove_contact_details_from_sponsor.rb │ ├── 20220820180050_add_virtual_to_events.rb │ ├── 20220820215847_add_time_zone_to_events.rb │ ├── 20230722001140_add_missing_indexes_on_taggings.acts_as_taggable_on_engine.rb │ ├── 20230722001141_add_tenant_to_taggings.acts_as_taggable_on_engine.rb │ ├── 20230801074547_add_service_name_to_active_storage_blobs.active_storage.rb │ ├── 20230801074548_create_active_storage_variant_records.active_storage.rb │ ├── 20230803225601_remove_not_null_on_active_storage_blobs_checksum.active_storage.rb │ ├── 20231230162506_add_last_overridden_by_id_to_workshop_invitations.rb │ ├── 20250806181500_remove_twitter.rb │ ├── 20250820134727_create_dietary_restriction_enum.rb │ ├── 20250820145012_add_dietary_restrictions_to_members.rb │ ├── 20250823151717_add_how_you_found_us_options.rb │ └── 20251120090000_add_missing_indexes.rb ├── schema.rb └── seeds.rb ├── docker-compose.env ├── docker-compose.yml ├── docs └── .gitkeep ├── lib ├── assets │ └── .keep ├── flodesk.rb ├── services │ ├── event_calendar.rb │ ├── mailing_list.rb │ └── ticket.rb ├── tasks │ ├── .keep │ ├── delete_member.rake │ ├── feedback.rake │ ├── mailing_list.rake │ ├── reminders.rake │ ├── rubocop.rake │ ├── seed_tags.rake │ └── workshop.rake ├── templates │ └── erb │ │ └── scaffold │ │ └── _form.html.erb └── verifier.rb ├── log └── .keep ├── native-installation-instructions.md ├── public ├── 404.html ├── 406-unsupported-browser.html ├── 422.html ├── 500.html ├── Icon-128.png ├── Icon-196.png ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── favicon.ico ├── icon.png ├── icon.svg ├── robots.txt └── sitemap.xml.gz ├── spec ├── controllers │ ├── admin │ │ ├── invitations_controller_spec.rb │ │ ├── member_notes_controller_spec.rb │ │ ├── member_search_controller_spec.rb │ │ ├── sponsors_controller_spec.rb │ │ └── workshops_controller_spec.rb │ ├── auth_services_controller_spec.rb │ ├── member │ │ └── details_controller_spec.rb │ └── members_controller_spec.rb ├── fabricators │ ├── address_fabricator.rb │ ├── announcement_fabricator.rb │ ├── attendance_warning_fabricator.rb │ ├── auth_service_fabricator.rb │ ├── ban_fabricator.rb │ ├── chapter_fabricator.rb │ ├── contact_fabricator.rb │ ├── event_fabricator.rb │ ├── feedback_fabricator.rb │ ├── feedback_request_fabricator.rb │ ├── group_fabricator.rb │ ├── invitation_fabricator.rb │ ├── meeting_fabricator.rb │ ├── meeting_invitation_fabricator.rb │ ├── member_fabricator.rb │ ├── member_note_fabricator.rb │ ├── permission_fabricator.rb │ ├── role_fabricator.rb │ ├── sponsor_fabricator.rb │ ├── sponsorship_fabricator.rb │ ├── subscription_fabricator.rb │ ├── testimonials_fabricator.rb │ ├── tutorial_fabricator.rb │ ├── waiting_list_fabricator.rb │ ├── workshop_fabricator.rb │ ├── workshop_invitation_fabricator.rb │ └── workshop_sponsor_fabricator.rb ├── features │ ├── accepting_invitation_spec.rb │ ├── accepting_terms_and_conditions_spec.rb │ ├── admin │ │ ├── accessing_portal_spec.rb │ │ ├── add_user_to_workshop_spec.rb │ │ ├── announcements_spec.rb │ │ ├── chapter │ │ │ └── feedback_spec.rb │ │ ├── chapters_spec.rb │ │ ├── event_spec.rb │ │ ├── feedback_spec.rb │ │ ├── filtering_sponsors_list_spec.rb │ │ ├── groups_spec.rb │ │ ├── manage_event_spec.rb │ │ ├── manage_sponsor_spec.rb │ │ ├── manage_workshop_attendances_spec.rb │ │ ├── managing_meeting_invitations_spec.rb │ │ ├── managing_organisers_spec.rb │ │ ├── managing_testimonials_spec.rb │ │ ├── meeting_spec.rb │ │ ├── member_search_spec.rb │ │ ├── members_spec.rb │ │ ├── sponsor_spec.rb │ │ └── workshops_spec.rb │ ├── chapter_spec.rb │ ├── coach_accepting_invitation_spec.rb │ ├── internationalization_spec.rb │ ├── listing_coaches_spec.rb │ ├── listing_events_spec.rb │ ├── manage_contact_preferences_spec.rb │ ├── managing_workshop_attendance_spec.rb │ ├── member │ │ └── login_spec.rb │ ├── member_feedback_spec.rb │ ├── member_joining_spec.rb │ ├── member_portal_spec.rb │ ├── member_updating_details_spec.rb │ ├── sponsors_spec.rb │ ├── subscribing_to_emails_spec.rb │ ├── subscribing_to_newsletter_spec.rb │ ├── view_event_spec.rb │ ├── viewing_a_meeting_spec.rb │ ├── viewing_a_workshop_invitation_spec.rb │ ├── viewing_a_workshop_spec.rb │ ├── viewing_pages_spec.rb │ └── visiting_homepage_spec.rb ├── helpers │ └── application_helper_spec.rb ├── lib │ ├── services │ │ ├── flodesk_spec.rb │ │ └── mailing_list_spec.rb │ ├── tasks │ │ ├── delete_member_rake_spec.rb │ │ ├── feedback_rake_spec.rb │ │ ├── mailing_list_rake_spec.rb │ │ ├── reminders_meeting_rake_spec.rb │ │ └── reminders_workshop_rake_spec.rb │ └── verifier_spec.rb ├── mailers │ ├── event_invitation_mailer_spec.rb │ ├── feedback_request_mailer_spec.rb │ ├── meeting_invitation_mailer_spec.rb │ ├── member_mailer_spec.rb │ ├── previews │ │ ├── event_invitation_mailer_preview.rb │ │ ├── meeting_invitation_mailer_preview.rb │ │ ├── member_mailer_preview.rb │ │ ├── virtual_workshop_invitation_mailer_preview.rb │ │ └── workshop_invitation_mailer_preview.rb │ ├── virtual_workshop_invitation_mailer_spec.rb │ └── workshop_invitation_mailer_spec.rb ├── models │ ├── address_spec.rb │ ├── attendance_warning_spec.rb │ ├── ban_spec.rb │ ├── chapter_spec.rb │ ├── concerns │ │ ├── listable_spec.rb │ │ └── permissions_spec.rb │ ├── eligibility_inquiry_spec.rb │ ├── event_spec.rb │ ├── feedback_request_spec.rb │ ├── feedback_spec.rb │ ├── group_spec.rb │ ├── invitation_manager_spec.rb │ ├── invitation_spec.rb │ ├── meeting_invitation_spec.rb │ ├── meeting_spec.rb │ ├── meeting_talk_spec.rb │ ├── member_note_spec.rb │ ├── member_spec.rb │ ├── role_spec.rb │ ├── sponsor_spec.rb │ ├── sponsors_search_spec.rb │ ├── tutorial_spec.rb │ ├── waiting_list_spec.rb │ ├── workshop_calendar_spec.rb │ ├── workshop_invitation_spec.rb │ ├── workshop_spec.rb │ └── workshop_sponsor_spec.rb ├── presenters │ ├── address_presenter_spec.rb │ ├── chapter_presenter_spec.rb │ ├── contact_presenter_spec.rb │ ├── event_presenter_spec.rb │ ├── invitation_presenter_spec.rb │ ├── meeting_presenter_spec.rb │ ├── member_presenter_spec.rb │ ├── sponsor_presenter_spec.rb │ ├── virtual_workshop_presenter_spec.rb │ └── workshop_presenter_spec.rb ├── services │ └── auditor_spec.rb ├── spec_helper.rb └── support │ ├── capybara.rb │ ├── chapter-image.png │ ├── codebar-logo.png │ ├── helpers │ └── login_helpers.rb │ ├── omniauth.rb │ ├── rake_tasks.rb │ ├── select_from_chosen.rb │ └── shared_examples │ ├── behaves_like_an_invitation.rb │ ├── behaves_like_an_invitation_route.rb │ ├── behaves_like_date_time_concerns.rb │ ├── behaves_like_invitable.rb │ ├── behaves_like_managing_workshop_attendance.rb │ ├── behaves_like_sending_workshop_emails.rb │ ├── behaves_like_viewing_workshop_actions.rb │ ├── behaves_like_viewing_workshop_details.rb │ └── behaves_link_member_viewing_workshop.rb ├── tmp └── pids │ └── .keep └── vendor └── assets ├── javascripts └── .keep └── stylesheets └── .keep /.dockerignore: -------------------------------------------------------------------------------- 1 | .git* 2 | log/* 3 | tmp/* 4 | Dockerfile 5 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | # config.yml 2 | 3 | blank_issues_enabled: false 4 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ruby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/.github/workflows/ruby.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/.gitignore -------------------------------------------------------------------------------- /.haml-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/.haml-lint.yml -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.4.7 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/Makefile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/GitHub_Logo_White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/GitHub_Logo_White.png -------------------------------------------------------------------------------- /app/assets/images/Icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/Icon-128.png -------------------------------------------------------------------------------- /app/assets/images/Icon-196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/Icon-196.png -------------------------------------------------------------------------------- /app/assets/images/benevity-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/benevity-logo.png -------------------------------------------------------------------------------- /app/assets/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/bg.jpg -------------------------------------------------------------------------------- /app/assets/images/codebar-girl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/codebar-girl.gif -------------------------------------------------------------------------------- /app/assets/images/codebar-social.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/codebar-social.jpg -------------------------------------------------------------------------------- /app/assets/images/codebar-stories-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/codebar-stories-banner.png -------------------------------------------------------------------------------- /app/assets/images/collaboration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/collaboration.png -------------------------------------------------------------------------------- /app/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/favicon.ico -------------------------------------------------------------------------------- /app/assets/images/festival/codebar-festival-logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/festival/codebar-festival-logo-light.png -------------------------------------------------------------------------------- /app/assets/images/give-as-you-live.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/give-as-you-live.png -------------------------------------------------------------------------------- /app/assets/images/how-to-support-us/become-a-coach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/how-to-support-us/become-a-coach.jpg -------------------------------------------------------------------------------- /app/assets/images/how-to-support-us/become-an-organiser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/how-to-support-us/become-an-organiser.jpg -------------------------------------------------------------------------------- /app/assets/images/how-to-support-us/codebar-festival-2023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/how-to-support-us/codebar-festival-2023.jpg -------------------------------------------------------------------------------- /app/assets/images/how-to-support-us/hackney-half.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/how-to-support-us/hackney-half.jpeg -------------------------------------------------------------------------------- /app/assets/images/how-to-support-us/volunteer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/how-to-support-us/volunteer.jpg -------------------------------------------------------------------------------- /app/assets/images/logo-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/logo-square.png -------------------------------------------------------------------------------- /app/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/logo.png -------------------------------------------------------------------------------- /app/assets/images/nyc-workshop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/nyc-workshop.jpg -------------------------------------------------------------------------------- /app/assets/images/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/ok.png -------------------------------------------------------------------------------- /app/assets/images/open-collective-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/open-collective-logo.png -------------------------------------------------------------------------------- /app/assets/images/social-summary-card-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/social-summary-card-image.png -------------------------------------------------------------------------------- /app/assets/images/sponsors/8th-Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/sponsors/8th-Light.png -------------------------------------------------------------------------------- /app/assets/images/sponsors/StreetTeam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/sponsors/StreetTeam.png -------------------------------------------------------------------------------- /app/assets/images/sponsors/bloomberg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/sponsors/bloomberg.png -------------------------------------------------------------------------------- /app/assets/images/sponsors/gds-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/sponsors/gds-logo.png -------------------------------------------------------------------------------- /app/assets/images/sponsors/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/sponsors/google.png -------------------------------------------------------------------------------- /app/assets/images/sponsors/mozilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/sponsors/mozilla.png -------------------------------------------------------------------------------- /app/assets/images/sponsors/pivotal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/sponsors/pivotal.png -------------------------------------------------------------------------------- /app/assets/images/sponsors/shutl_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/sponsors/shutl_logo.png -------------------------------------------------------------------------------- /app/assets/images/sponsors/softwire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/sponsors/softwire.png -------------------------------------------------------------------------------- /app/assets/images/sponsors/the-guardian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/sponsors/the-guardian.png -------------------------------------------------------------------------------- /app/assets/images/sponsors/ticketmaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/sponsors/ticketmaster.png -------------------------------------------------------------------------------- /app/assets/images/sponsors/ustwo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/sponsors/ustwo.png -------------------------------------------------------------------------------- /app/assets/images/star-rating.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/star-rating.gif -------------------------------------------------------------------------------- /app/assets/images/uncodebar-group.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/images/uncodebar-group.jpeg -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/dietary-restrictions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/javascripts/dietary-restrictions.js -------------------------------------------------------------------------------- /app/assets/javascripts/how-you-found-us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/javascripts/how-you-found-us.js -------------------------------------------------------------------------------- /app/assets/javascripts/invitations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/javascripts/invitations.js -------------------------------------------------------------------------------- /app/assets/javascripts/jsimple-star-rating.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/javascripts/jsimple-star-rating.min.js -------------------------------------------------------------------------------- /app/assets/javascripts/payments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/javascripts/payments.js -------------------------------------------------------------------------------- /app/assets/javascripts/subscriptions-toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/javascripts/subscriptions-toggle.js -------------------------------------------------------------------------------- /app/assets/stylesheets/_bootstrap-custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/stylesheets/_bootstrap-custom.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/stylesheets/animations.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/email.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/stylesheets/email.css -------------------------------------------------------------------------------- /app/assets/stylesheets/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/stylesheets/main.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/partials/_colors.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/stylesheets/partials/_colors.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/partials/_hero.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/stylesheets/partials/_hero.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/partials/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/stylesheets/partials/_layout.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/partials/_screen_readers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/stylesheets/partials/_screen_readers.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/partials/_social_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/stylesheets/partials/_social_media.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/partials/_star-rating.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/assets/stylesheets/partials/_star-rating.scss -------------------------------------------------------------------------------- /app/controllers/admin/announcements_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/admin/announcements_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/admin/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/bans_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/admin/bans_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/chapters/feedback_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/admin/chapters/feedback_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/chapters/organisers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/admin/chapters/organisers_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/chapters_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/admin/chapters_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/contacts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/admin/contacts_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/events_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/admin/events_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/feedback_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/admin/feedback_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/groups_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/admin/groups_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/invitation_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/admin/invitation_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/invitations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/admin/invitations_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/meeting_invitations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/admin/meeting_invitations_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/meetings_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/admin/meetings_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/member_notes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/admin/member_notes_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/member_search_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/admin/member_search_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/members_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/admin/members_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/portal_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/admin/portal_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/sponsors_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/admin/sponsors_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/testimonials_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/admin/testimonials_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/workshops_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/admin/workshops_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/auth_services_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/auth_services_controller.rb -------------------------------------------------------------------------------- /app/controllers/auth_sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/auth_sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/chapter_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/chapter_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/admin/sponsor_concerns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/concerns/admin/sponsor_concerns.rb -------------------------------------------------------------------------------- /app/controllers/concerns/admin/workshop_concerns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/concerns/admin/workshop_concerns.rb -------------------------------------------------------------------------------- /app/controllers/concerns/invitation_controller_concerns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/concerns/invitation_controller_concerns.rb -------------------------------------------------------------------------------- /app/controllers/concerns/mailing_list_concerns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/concerns/mailing_list_concerns.rb -------------------------------------------------------------------------------- /app/controllers/concerns/member_concerns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/concerns/member_concerns.rb -------------------------------------------------------------------------------- /app/controllers/concerns/workshop_invitation_concerns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/concerns/workshop_invitation_concerns.rb -------------------------------------------------------------------------------- /app/controllers/contact_preferences_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/contact_preferences_controller.rb -------------------------------------------------------------------------------- /app/controllers/dashboard_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/dashboard_controller.rb -------------------------------------------------------------------------------- /app/controllers/donations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/donations_controller.rb -------------------------------------------------------------------------------- /app/controllers/events_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/events_controller.rb -------------------------------------------------------------------------------- /app/controllers/feedback_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/feedback_controller.rb -------------------------------------------------------------------------------- /app/controllers/invitation_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/invitation_controller.rb -------------------------------------------------------------------------------- /app/controllers/invitations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/invitations_controller.rb -------------------------------------------------------------------------------- /app/controllers/mailing_lists_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/mailing_lists_controller.rb -------------------------------------------------------------------------------- /app/controllers/meetings_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/meetings_controller.rb -------------------------------------------------------------------------------- /app/controllers/member/details_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/member/details_controller.rb -------------------------------------------------------------------------------- /app/controllers/members_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/members_controller.rb -------------------------------------------------------------------------------- /app/controllers/pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/payments_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/payments_controller.rb -------------------------------------------------------------------------------- /app/controllers/sponsors_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/sponsors_controller.rb -------------------------------------------------------------------------------- /app/controllers/subscriptions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/subscriptions_controller.rb -------------------------------------------------------------------------------- /app/controllers/super_admin/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/super_admin/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/terms_and_conditions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/terms_and_conditions_controller.rb -------------------------------------------------------------------------------- /app/controllers/waiting_lists_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/waiting_lists_controller.rb -------------------------------------------------------------------------------- /app/controllers/workshops_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/controllers/workshops_controller.rb -------------------------------------------------------------------------------- /app/form_models/mailing_list_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/form_models/mailing_list_form.rb -------------------------------------------------------------------------------- /app/form_models/terms_and_conditions_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/form_models/terms_and_conditions_form.rb -------------------------------------------------------------------------------- /app/helpers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/helpers/README.md -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/email_header_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/helpers/email_header_helper.rb -------------------------------------------------------------------------------- /app/helpers/email_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/helpers/email_helper.rb -------------------------------------------------------------------------------- /app/helpers/event_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/helpers/event_helper.rb -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/mailers/contact_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/mailers/contact_mailer.rb -------------------------------------------------------------------------------- /app/mailers/event_invitation_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/mailers/event_invitation_mailer.rb -------------------------------------------------------------------------------- /app/mailers/feedback_request_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/mailers/feedback_request_mailer.rb -------------------------------------------------------------------------------- /app/mailers/meeting_invitation_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/mailers/meeting_invitation_mailer.rb -------------------------------------------------------------------------------- /app/mailers/member_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/mailers/member_mailer.rb -------------------------------------------------------------------------------- /app/mailers/virtual_workshop_invitation_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/mailers/virtual_workshop_invitation_mailer.rb -------------------------------------------------------------------------------- /app/mailers/workshop_invitation_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/mailers/workshop_invitation_mailer.rb -------------------------------------------------------------------------------- /app/models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/README.md -------------------------------------------------------------------------------- /app/models/address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/address.rb -------------------------------------------------------------------------------- /app/models/announcement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/announcement.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/attendance_warning.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/attendance_warning.rb -------------------------------------------------------------------------------- /app/models/auth_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/auth_service.rb -------------------------------------------------------------------------------- /app/models/ban.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/ban.rb -------------------------------------------------------------------------------- /app/models/chapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/chapter.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/date_time_concerns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/concerns/date_time_concerns.rb -------------------------------------------------------------------------------- /app/models/concerns/invitable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/concerns/invitable.rb -------------------------------------------------------------------------------- /app/models/concerns/invitation_concerns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/concerns/invitation_concerns.rb -------------------------------------------------------------------------------- /app/models/concerns/listable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/concerns/listable.rb -------------------------------------------------------------------------------- /app/models/concerns/permissions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/concerns/permissions.rb -------------------------------------------------------------------------------- /app/models/concerns/workshop_invitation_manager_concerns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/concerns/workshop_invitation_manager_concerns.rb -------------------------------------------------------------------------------- /app/models/contact.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/contact.rb -------------------------------------------------------------------------------- /app/models/eligibility_inquiry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/eligibility_inquiry.rb -------------------------------------------------------------------------------- /app/models/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/event.rb -------------------------------------------------------------------------------- /app/models/feedback.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/feedback.rb -------------------------------------------------------------------------------- /app/models/feedback_request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/feedback_request.rb -------------------------------------------------------------------------------- /app/models/group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/group.rb -------------------------------------------------------------------------------- /app/models/group_announcement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/group_announcement.rb -------------------------------------------------------------------------------- /app/models/invitation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/invitation.rb -------------------------------------------------------------------------------- /app/models/invitation_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/invitation_manager.rb -------------------------------------------------------------------------------- /app/models/meeting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/meeting.rb -------------------------------------------------------------------------------- /app/models/meeting_invitation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/meeting_invitation.rb -------------------------------------------------------------------------------- /app/models/meeting_talk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/meeting_talk.rb -------------------------------------------------------------------------------- /app/models/member.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/member.rb -------------------------------------------------------------------------------- /app/models/member_note.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/member_note.rb -------------------------------------------------------------------------------- /app/models/permission.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/permission.rb -------------------------------------------------------------------------------- /app/models/role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/role.rb -------------------------------------------------------------------------------- /app/models/sponsor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/sponsor.rb -------------------------------------------------------------------------------- /app/models/sponsors_search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/sponsors_search.rb -------------------------------------------------------------------------------- /app/models/sponsorship.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/sponsorship.rb -------------------------------------------------------------------------------- /app/models/subscription.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/subscription.rb -------------------------------------------------------------------------------- /app/models/testimonial.rb: -------------------------------------------------------------------------------- 1 | class Testimonial < ApplicationRecord 2 | belongs_to :member 3 | end 4 | -------------------------------------------------------------------------------- /app/models/tutorial.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/tutorial.rb -------------------------------------------------------------------------------- /app/models/waiting_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/waiting_list.rb -------------------------------------------------------------------------------- /app/models/workshop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/workshop.rb -------------------------------------------------------------------------------- /app/models/workshop_calendar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/workshop_calendar.rb -------------------------------------------------------------------------------- /app/models/workshop_invitation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/workshop_invitation.rb -------------------------------------------------------------------------------- /app/models/workshop_sponsor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/models/workshop_sponsor.rb -------------------------------------------------------------------------------- /app/policies/admin_portal_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/policies/admin_portal_policy.rb -------------------------------------------------------------------------------- /app/policies/application_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/policies/application_policy.rb -------------------------------------------------------------------------------- /app/policies/chapter_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/policies/chapter_policy.rb -------------------------------------------------------------------------------- /app/policies/contact_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/policies/contact_policy.rb -------------------------------------------------------------------------------- /app/policies/event_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/policies/event_policy.rb -------------------------------------------------------------------------------- /app/policies/group_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/policies/group_policy.rb -------------------------------------------------------------------------------- /app/policies/member_note_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/policies/member_note_policy.rb -------------------------------------------------------------------------------- /app/policies/organiser_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/policies/organiser_policy.rb -------------------------------------------------------------------------------- /app/policies/sponsor_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/policies/sponsor_policy.rb -------------------------------------------------------------------------------- /app/policies/testimonial_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/policies/testimonial_policy.rb -------------------------------------------------------------------------------- /app/policies/workshop_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/policies/workshop_policy.rb -------------------------------------------------------------------------------- /app/presenters/address_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/presenters/address_presenter.rb -------------------------------------------------------------------------------- /app/presenters/base_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/presenters/base_presenter.rb -------------------------------------------------------------------------------- /app/presenters/chapter_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/presenters/chapter_presenter.rb -------------------------------------------------------------------------------- /app/presenters/contact_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/presenters/contact_presenter.rb -------------------------------------------------------------------------------- /app/presenters/event_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/presenters/event_presenter.rb -------------------------------------------------------------------------------- /app/presenters/invitation_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/presenters/invitation_presenter.rb -------------------------------------------------------------------------------- /app/presenters/meeting_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/presenters/meeting_presenter.rb -------------------------------------------------------------------------------- /app/presenters/member_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/presenters/member_presenter.rb -------------------------------------------------------------------------------- /app/presenters/sponsor_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/presenters/sponsor_presenter.rb -------------------------------------------------------------------------------- /app/presenters/virtual_workshop_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/presenters/virtual_workshop_presenter.rb -------------------------------------------------------------------------------- /app/presenters/waiting_list_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/presenters/waiting_list_presenter.rb -------------------------------------------------------------------------------- /app/presenters/workshop_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/presenters/workshop_presenter.rb -------------------------------------------------------------------------------- /app/services/auditor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/services/auditor.rb -------------------------------------------------------------------------------- /app/uploaders/avatar_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/uploaders/avatar_uploader.rb -------------------------------------------------------------------------------- /app/uploaders/image_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/uploaders/image_uploader.rb -------------------------------------------------------------------------------- /app/views/admin/announcements/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/announcements/edit.html.haml -------------------------------------------------------------------------------- /app/views/admin/announcements/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/announcements/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/announcements/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/announcements/new.html.haml -------------------------------------------------------------------------------- /app/views/admin/attendance_warnings/_attendance_warning.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/attendance_warnings/_attendance_warning.html.haml -------------------------------------------------------------------------------- /app/views/admin/bans/_ban.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/bans/_ban.html.haml -------------------------------------------------------------------------------- /app/views/admin/bans/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/bans/new.html.haml -------------------------------------------------------------------------------- /app/views/admin/chapters/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/chapters/edit.html.haml -------------------------------------------------------------------------------- /app/views/admin/chapters/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/chapters/new.html.haml -------------------------------------------------------------------------------- /app/views/admin/chapters/organisers/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/chapters/organisers/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/chapters/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/chapters/show.html.haml -------------------------------------------------------------------------------- /app/views/admin/contacts/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/contacts/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/eligibility_inquiries/_eligibility_inquiry.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/eligibility_inquiries/_eligibility_inquiry.html.haml -------------------------------------------------------------------------------- /app/views/admin/events/_attendances.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/events/_attendances.html.haml -------------------------------------------------------------------------------- /app/views/admin/events/_event.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/events/_event.html.haml -------------------------------------------------------------------------------- /app/views/admin/events/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/events/_form.html.haml -------------------------------------------------------------------------------- /app/views/admin/events/_invitation_management.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/events/_invitation_management.html.haml -------------------------------------------------------------------------------- /app/views/admin/events/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/events/edit.html.haml -------------------------------------------------------------------------------- /app/views/admin/events/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/events/new.html.haml -------------------------------------------------------------------------------- /app/views/admin/events/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/events/show.html.haml -------------------------------------------------------------------------------- /app/views/admin/feedback/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/feedback/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/groups/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/groups/new.html.haml -------------------------------------------------------------------------------- /app/views/admin/groups/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/groups/show.html.haml -------------------------------------------------------------------------------- /app/views/admin/meetings/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/meetings/_form.html.haml -------------------------------------------------------------------------------- /app/views/admin/meetings/_invitation_management.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/meetings/_invitation_management.html.haml -------------------------------------------------------------------------------- /app/views/admin/meetings/_meeting.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/meetings/_meeting.html.haml -------------------------------------------------------------------------------- /app/views/admin/meetings/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/meetings/edit.html.haml -------------------------------------------------------------------------------- /app/views/admin/meetings/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/meetings/new.html.haml -------------------------------------------------------------------------------- /app/views/admin/meetings/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/meetings/show.html.haml -------------------------------------------------------------------------------- /app/views/admin/member_notes/_member_note.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/member_notes/_member_note.html.haml -------------------------------------------------------------------------------- /app/views/admin/member_search/_search_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/member_search/_search_form.html.haml -------------------------------------------------------------------------------- /app/views/admin/member_search/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/member_search/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/member_search/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/member_search/show.html.haml -------------------------------------------------------------------------------- /app/views/admin/members/_actions.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/members/_actions.html.haml -------------------------------------------------------------------------------- /app/views/admin/members/_note.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/members/_note.html.haml -------------------------------------------------------------------------------- /app/views/admin/members/_profile.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/members/_profile.html.haml -------------------------------------------------------------------------------- /app/views/admin/members/events.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/members/events.html.haml -------------------------------------------------------------------------------- /app/views/admin/members/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/members/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/members/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/members/show.html.haml -------------------------------------------------------------------------------- /app/views/admin/portal/guide.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/portal/guide.html.haml -------------------------------------------------------------------------------- /app/views/admin/portal/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/portal/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/shared/_title.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/shared/_title.html.haml -------------------------------------------------------------------------------- /app/views/admin/sponsors/_contact_fields.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/sponsors/_contact_fields.html.haml -------------------------------------------------------------------------------- /app/views/admin/sponsors/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/sponsors/_form.html.haml -------------------------------------------------------------------------------- /app/views/admin/sponsors/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/sponsors/edit.html.haml -------------------------------------------------------------------------------- /app/views/admin/sponsors/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/sponsors/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/sponsors/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/sponsors/new.html.haml -------------------------------------------------------------------------------- /app/views/admin/sponsors/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/sponsors/show.html.haml -------------------------------------------------------------------------------- /app/views/admin/subscriptions/_index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/subscriptions/_index.html.haml -------------------------------------------------------------------------------- /app/views/admin/testimonials/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/testimonials/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/workshop/_attendances.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/workshop/_attendances.html.haml -------------------------------------------------------------------------------- /app/views/admin/workshop/_waiting_list.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/workshop/_waiting_list.html.haml -------------------------------------------------------------------------------- /app/views/admin/workshops/_activity.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/workshops/_activity.html.haml -------------------------------------------------------------------------------- /app/views/admin/workshops/_edit_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/workshops/_edit_form.html.haml -------------------------------------------------------------------------------- /app/views/admin/workshops/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/workshops/_form.html.haml -------------------------------------------------------------------------------- /app/views/admin/workshops/_invitation_management.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/workshops/_invitation_management.html.haml -------------------------------------------------------------------------------- /app/views/admin/workshops/_shared_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/workshops/_shared_form.html.haml -------------------------------------------------------------------------------- /app/views/admin/workshops/_virtual_workshop_fields.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/workshops/_virtual_workshop_fields.html.haml -------------------------------------------------------------------------------- /app/views/admin/workshops/_workshop.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/workshops/_workshop.html.haml -------------------------------------------------------------------------------- /app/views/admin/workshops/changes.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/workshops/changes.html.haml -------------------------------------------------------------------------------- /app/views/admin/workshops/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/workshops/edit.html.haml -------------------------------------------------------------------------------- /app/views/admin/workshops/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/workshops/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/workshops/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/workshops/new.html.haml -------------------------------------------------------------------------------- /app/views/admin/workshops/send_invites.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/workshops/send_invites.html.haml -------------------------------------------------------------------------------- /app/views/admin/workshops/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/admin/workshops/show.html.haml -------------------------------------------------------------------------------- /app/views/chapter/_subscriptions.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/chapter/_subscriptions.html.haml -------------------------------------------------------------------------------- /app/views/chapter/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/chapter/show.html.haml -------------------------------------------------------------------------------- /app/views/coach/_coach.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/coach/_coach.html.haml -------------------------------------------------------------------------------- /app/views/contact_mailer/subscription_notification.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/contact_mailer/subscription_notification.html.haml -------------------------------------------------------------------------------- /app/views/contact_preferences/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/contact_preferences/show.html.haml -------------------------------------------------------------------------------- /app/views/dashboard/attendance_policy.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/dashboard/attendance_policy.html.haml -------------------------------------------------------------------------------- /app/views/dashboard/code.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/dashboard/code.html.haml -------------------------------------------------------------------------------- /app/views/dashboard/dashboard.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/dashboard/dashboard.html.haml -------------------------------------------------------------------------------- /app/views/dashboard/effective-teacher-guide.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/dashboard/effective-teacher-guide.html.haml -------------------------------------------------------------------------------- /app/views/dashboard/faq.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/dashboard/faq.html.haml -------------------------------------------------------------------------------- /app/views/dashboard/participant_guide.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/dashboard/participant_guide.html.haml -------------------------------------------------------------------------------- /app/views/dashboard/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/dashboard/show.html.haml -------------------------------------------------------------------------------- /app/views/dashboard/wall_of_fame.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/dashboard/wall_of_fame.html.haml -------------------------------------------------------------------------------- /app/views/errors/error.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/errors/error.html.haml -------------------------------------------------------------------------------- /app/views/errors/not_found.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/errors/not_found.html.haml -------------------------------------------------------------------------------- /app/views/event_invitation_mailer/attending.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/event_invitation_mailer/attending.html.haml -------------------------------------------------------------------------------- /app/views/event_invitation_mailer/invite_coach.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/event_invitation_mailer/invite_coach.html.haml -------------------------------------------------------------------------------- /app/views/event_invitation_mailer/invite_student.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/event_invitation_mailer/invite_student.html.haml -------------------------------------------------------------------------------- /app/views/events/_event.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/events/_event.html.haml -------------------------------------------------------------------------------- /app/views/events/_event_actions.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/events/_event_actions.html.haml -------------------------------------------------------------------------------- /app/views/events/_event_sponsors.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/events/_event_sponsors.html.haml -------------------------------------------------------------------------------- /app/views/events/_events.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/events/_events.html.haml -------------------------------------------------------------------------------- /app/views/events/_faq.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/events/_faq.html.haml -------------------------------------------------------------------------------- /app/views/events/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/events/index.html.haml -------------------------------------------------------------------------------- /app/views/events/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/events/show.html.haml -------------------------------------------------------------------------------- /app/views/feedback/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/feedback/show.html.haml -------------------------------------------------------------------------------- /app/views/feedback_request_mailer/request_feedback.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/feedback_request_mailer/request_feedback.html.haml -------------------------------------------------------------------------------- /app/views/invitation/_coach.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/invitation/_coach.html.haml -------------------------------------------------------------------------------- /app/views/invitation/_student.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/invitation/_student.html.haml -------------------------------------------------------------------------------- /app/views/invitation/_waiting_list.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/invitation/_waiting_list.html.haml -------------------------------------------------------------------------------- /app/views/invitation/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/invitation/show.html.haml -------------------------------------------------------------------------------- /app/views/invitations/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/invitations/index.html.haml -------------------------------------------------------------------------------- /app/views/invitations/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/invitations/show.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_admin_menu.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/layouts/_admin_menu.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_footer.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/layouts/_footer.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_member_menu.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/layouts/_member_menu.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_messages.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/layouts/_messages.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_navigation.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/layouts/_navigation.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_organiser_menu.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/layouts/_organiser_menu.html.haml -------------------------------------------------------------------------------- /app/views/layouts/application.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/layouts/application.html.haml -------------------------------------------------------------------------------- /app/views/layouts/email.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/layouts/email.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/meeting_invitation_mailer/_agenda.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/meeting_invitation_mailer/_agenda.html.haml -------------------------------------------------------------------------------- /app/views/meeting_invitation_mailer/_cancel_attendance.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/meeting_invitation_mailer/_cancel_attendance.html.haml -------------------------------------------------------------------------------- /app/views/meeting_invitation_mailer/approve_from_waitlist.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/meeting_invitation_mailer/approve_from_waitlist.html.haml -------------------------------------------------------------------------------- /app/views/meeting_invitation_mailer/attendance_reminder.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/meeting_invitation_mailer/attendance_reminder.html.haml -------------------------------------------------------------------------------- /app/views/meeting_invitation_mailer/attending.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/meeting_invitation_mailer/attending.html.haml -------------------------------------------------------------------------------- /app/views/meeting_invitation_mailer/invite.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/meeting_invitation_mailer/invite.html.haml -------------------------------------------------------------------------------- /app/views/meetings/_meeting.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/meetings/_meeting.html.haml -------------------------------------------------------------------------------- /app/views/meetings/_meeting_actions.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/meetings/_meeting_actions.html.haml -------------------------------------------------------------------------------- /app/views/meetings/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/meetings/show.html.haml -------------------------------------------------------------------------------- /app/views/member/details/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/member/details/edit.html.haml -------------------------------------------------------------------------------- /app/views/member_mailer/attendance_warning.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/member_mailer/attendance_warning.html.haml -------------------------------------------------------------------------------- /app/views/member_mailer/ban.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/member_mailer/ban.html.haml -------------------------------------------------------------------------------- /app/views/member_mailer/eligibility_check.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/member_mailer/eligibility_check.html.haml -------------------------------------------------------------------------------- /app/views/member_mailer/welcome_coach.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/member_mailer/welcome_coach.html.haml -------------------------------------------------------------------------------- /app/views/member_mailer/welcome_student.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/member_mailer/welcome_student.html.haml -------------------------------------------------------------------------------- /app/views/members/_avatar_listing.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/members/_avatar_listing.html.haml -------------------------------------------------------------------------------- /app/views/members/_coach_invite_subscriptions.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/members/_coach_invite_subscriptions.html.haml -------------------------------------------------------------------------------- /app/views/members/_new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/members/_new.html.haml -------------------------------------------------------------------------------- /app/views/members/_organisers_grid.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/members/_organisers_grid.html.haml -------------------------------------------------------------------------------- /app/views/members/_student_invite_subscriptions.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/members/_student_invite_subscriptions.html.haml -------------------------------------------------------------------------------- /app/views/members/_testimonials.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/members/_testimonials.html.haml -------------------------------------------------------------------------------- /app/views/members/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/members/edit.html.haml -------------------------------------------------------------------------------- /app/views/members/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/members/new.html.haml -------------------------------------------------------------------------------- /app/views/members/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/members/show.html.haml -------------------------------------------------------------------------------- /app/views/members/step2.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/members/step2.html.haml -------------------------------------------------------------------------------- /app/views/pages/breach-code-of-conduct.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/pages/breach-code-of-conduct.html.haml -------------------------------------------------------------------------------- /app/views/pages/codebar-stories-podcast.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/pages/codebar-stories-podcast.html.haml -------------------------------------------------------------------------------- /app/views/pages/cookie-policy.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/pages/cookie-policy.html.haml -------------------------------------------------------------------------------- /app/views/pages/how-to-support-us.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/pages/how-to-support-us.html.haml -------------------------------------------------------------------------------- /app/views/pages/privacy-policy.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/pages/privacy-policy.html.haml -------------------------------------------------------------------------------- /app/views/public_activity/sponsor/_admin_contact_subscribe.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/public_activity/sponsor/_admin_contact_subscribe.html.haml -------------------------------------------------------------------------------- /app/views/public_activity/sponsor/_admin_contact_unsubscribe.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/public_activity/sponsor/_admin_contact_unsubscribe.html.haml -------------------------------------------------------------------------------- /app/views/public_activity/sponsor/_contact_subscribe.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/public_activity/sponsor/_contact_subscribe.html.haml -------------------------------------------------------------------------------- /app/views/public_activity/sponsor/_contact_unsubscribe.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/public_activity/sponsor/_contact_unsubscribe.html.haml -------------------------------------------------------------------------------- /app/views/shared/_announcements.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/shared/_announcements.html.haml -------------------------------------------------------------------------------- /app/views/shared/_donation_platforms.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/shared/_donation_platforms.html.haml -------------------------------------------------------------------------------- /app/views/shared/_festival_banner.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/shared/_festival_banner.html.haml -------------------------------------------------------------------------------- /app/views/shared/_meta_tags.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/shared/_meta_tags.html.haml -------------------------------------------------------------------------------- /app/views/shared/_newsletter.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/shared/_newsletter.html.haml -------------------------------------------------------------------------------- /app/views/shared/_pagination.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/shared/_pagination.html.haml -------------------------------------------------------------------------------- /app/views/shared/_social_media.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/shared/_social_media.html.haml -------------------------------------------------------------------------------- /app/views/shared/_sponsors.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/shared/_sponsors.html.haml -------------------------------------------------------------------------------- /app/views/shared/_venue.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/shared/_venue.html.haml -------------------------------------------------------------------------------- /app/views/shared_mailers/_body_header.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/shared_mailers/_body_header.html.haml -------------------------------------------------------------------------------- /app/views/shared_mailers/_footer.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/shared_mailers/_footer.html.haml -------------------------------------------------------------------------------- /app/views/shared_mailers/_header.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/shared_mailers/_header.html.haml -------------------------------------------------------------------------------- /app/views/shared_mailers/_social.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/shared_mailers/_social.html.haml -------------------------------------------------------------------------------- /app/views/shared_mailers/_venue.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/shared_mailers/_venue.html.haml -------------------------------------------------------------------------------- /app/views/sponsors/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/sponsors/index.html.haml -------------------------------------------------------------------------------- /app/views/subscriptions/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/subscriptions/index.html.haml -------------------------------------------------------------------------------- /app/views/terms_and_conditions/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/terms_and_conditions/show.html.haml -------------------------------------------------------------------------------- /app/views/virtual_workshop_invitation_mailer/_how_to_join_info.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/virtual_workshop_invitation_mailer/_how_to_join_info.html.haml -------------------------------------------------------------------------------- /app/views/virtual_workshop_invitation_mailer/attending.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/virtual_workshop_invitation_mailer/attending.html.haml -------------------------------------------------------------------------------- /app/views/virtual_workshop_invitation_mailer/attending_reminder.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/virtual_workshop_invitation_mailer/attending_reminder.html.haml -------------------------------------------------------------------------------- /app/views/virtual_workshop_invitation_mailer/invite_coach.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/virtual_workshop_invitation_mailer/invite_coach.html.haml -------------------------------------------------------------------------------- /app/views/virtual_workshop_invitation_mailer/invite_student.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/virtual_workshop_invitation_mailer/invite_student.html.haml -------------------------------------------------------------------------------- /app/views/virtual_workshop_invitation_mailer/waiting_list_reminder.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/virtual_workshop_invitation_mailer/waiting_list_reminder.html.haml -------------------------------------------------------------------------------- /app/views/virtual_workshops/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/virtual_workshops/show.html.haml -------------------------------------------------------------------------------- /app/views/workshop_invitation_mailer/attending.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/workshop_invitation_mailer/attending.html.haml -------------------------------------------------------------------------------- /app/views/workshop_invitation_mailer/attending_reminder.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/workshop_invitation_mailer/attending_reminder.html.haml -------------------------------------------------------------------------------- /app/views/workshop_invitation_mailer/invite_coach.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/workshop_invitation_mailer/invite_coach.html.haml -------------------------------------------------------------------------------- /app/views/workshop_invitation_mailer/invite_student.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/workshop_invitation_mailer/invite_student.html.haml -------------------------------------------------------------------------------- /app/views/workshop_invitation_mailer/notify_waiting_list.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/workshop_invitation_mailer/notify_waiting_list.html.haml -------------------------------------------------------------------------------- /app/views/workshop_invitation_mailer/waiting_list_reminder.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/workshop_invitation_mailer/waiting_list_reminder.html.haml -------------------------------------------------------------------------------- /app/views/workshops/_actions.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/workshops/_actions.html.haml -------------------------------------------------------------------------------- /app/views/workshops/_meta_tags.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/workshops/_meta_tags.html.haml -------------------------------------------------------------------------------- /app/views/workshops/_workshop.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/workshops/_workshop.html.haml -------------------------------------------------------------------------------- /app/views/workshops/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/app/views/workshops/show.html.haml -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/dadmin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/bin/dadmin -------------------------------------------------------------------------------- /bin/ddown: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -e 4 | 5 | docker compose down 6 | -------------------------------------------------------------------------------- /bin/delayed_job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/bin/delayed_job -------------------------------------------------------------------------------- /bin/dexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/bin/dexec -------------------------------------------------------------------------------- /bin/drails: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -e 4 | 5 | docker compose exec web rails $@ 6 | -------------------------------------------------------------------------------- /bin/drake: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -e 4 | 5 | docker compose exec web rake $@ 6 | -------------------------------------------------------------------------------- /bin/drspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/bin/drspec -------------------------------------------------------------------------------- /bin/dserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/bin/dserver -------------------------------------------------------------------------------- /bin/dstart: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -e 4 | 5 | docker compose start 6 | -------------------------------------------------------------------------------- /bin/dstop: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -e 4 | 5 | docker compose stop 6 | -------------------------------------------------------------------------------- /bin/dup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/bin/dup -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/bin/rubocop -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/bin/update -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/carrier_wave.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/initializers/carrier_wave.rb -------------------------------------------------------------------------------- /config/initializers/commonmarker.rb: -------------------------------------------------------------------------------- 1 | require 'commonmarker' 2 | -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/delayed_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/initializers/delayed_job.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/flodesk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/initializers/flodesk.rb -------------------------------------------------------------------------------- /config/initializers/haml_markdown.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/initializers/haml_markdown.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/initializers/locale.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/omniauth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/initializers/omniauth.rb -------------------------------------------------------------------------------- /config/initializers/pagy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/initializers/pagy.rb -------------------------------------------------------------------------------- /config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /config/initializers/premailer.rb: -------------------------------------------------------------------------------- 1 | Premailer::Rails.config.merge!(preserve_styles: true) 2 | -------------------------------------------------------------------------------- /config/initializers/rolify.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/initializers/rolify.rb -------------------------------------------------------------------------------- /config/initializers/rollbar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/initializers/rollbar.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/simple_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/initializers/simple_form.rb -------------------------------------------------------------------------------- /config/initializers/simple_form_bootstrap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/initializers/simple_form_bootstrap.rb -------------------------------------------------------------------------------- /config/initializers/stripe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/initializers/stripe.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/admin.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/locales/admin.de.yml -------------------------------------------------------------------------------- /config/locales/admin.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/locales/admin.en.yml -------------------------------------------------------------------------------- /config/locales/admin.en_AU.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/locales/admin.en_AU.yml -------------------------------------------------------------------------------- /config/locales/admin.en_GB.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/locales/admin.en_GB.yml -------------------------------------------------------------------------------- /config/locales/admin.en_US.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/locales/admin.en_US.yml -------------------------------------------------------------------------------- /config/locales/admin.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/locales/admin.es.yml -------------------------------------------------------------------------------- /config/locales/admin.fi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/locales/admin.fi.yml -------------------------------------------------------------------------------- /config/locales/admin.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/locales/admin.fr.yml -------------------------------------------------------------------------------- /config/locales/admin.no.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/locales/admin.no.yml -------------------------------------------------------------------------------- /config/locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/locales/de.yml -------------------------------------------------------------------------------- /config/locales/en.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/locales/en.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/en_AU.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/locales/en_AU.yml -------------------------------------------------------------------------------- /config/locales/en_GB.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/locales/en_GB.yml -------------------------------------------------------------------------------- /config/locales/en_US.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/locales/en_US.yml -------------------------------------------------------------------------------- /config/locales/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/locales/es.yml -------------------------------------------------------------------------------- /config/locales/fi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/locales/fi.yml -------------------------------------------------------------------------------- /config/locales/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/locales/fr.yml -------------------------------------------------------------------------------- /config/locales/no.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/locales/no.yml -------------------------------------------------------------------------------- /config/locales/simple_form.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/locales/simple_form.de.yml -------------------------------------------------------------------------------- /config/locales/simple_form.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/locales/simple_form.en.yml -------------------------------------------------------------------------------- /config/locales/simple_form.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/locales/simple_form.fr.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/sitemap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/sitemap.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/config/storage.yml -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/crowdin.yml -------------------------------------------------------------------------------- /db/migrate/20131017221407_create_members.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20131017221407_create_members.rb -------------------------------------------------------------------------------- /db/migrate/20131020223957_create_sessions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20131020223957_create_sessions.rb -------------------------------------------------------------------------------- /db/migrate/20131020235644_create_invitations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20131020235644_create_invitations.rb -------------------------------------------------------------------------------- /db/migrate/20131021011352_add_token_to_invitation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20131021011352_add_token_to_invitation.rb -------------------------------------------------------------------------------- /db/migrate/20131021011859_add_index_to_invitation_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20131021011859_add_index_to_invitation_token.rb -------------------------------------------------------------------------------- /db/migrate/20131021040356_add_unsubscribed_to_member.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20131021040356_add_unsubscribed_to_member.rb -------------------------------------------------------------------------------- /db/migrate/20131021182241_add_seats_to_session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20131021182241_add_seats_to_session.rb -------------------------------------------------------------------------------- /db/migrate/20131024223507_create_roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20131024223507_create_roles.rb -------------------------------------------------------------------------------- /db/migrate/20131024224307_create_member_role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20131024224307_create_member_role.rb -------------------------------------------------------------------------------- /db/migrate/20131029210620_create_courses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20131029210620_create_courses.rb -------------------------------------------------------------------------------- /db/migrate/20131102132756_create_sponsors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20131102132756_create_sponsors.rb -------------------------------------------------------------------------------- /db/migrate/20131102141049_create_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20131102141049_create_address.rb -------------------------------------------------------------------------------- /db/migrate/20131103174325_create_sponsor_sessions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20131103174325_create_sponsor_sessions.rb -------------------------------------------------------------------------------- /db/migrate/20131103210723_rename_invitations_to_session_invitations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20131103210723_rename_invitations_to_session_invitations.rb -------------------------------------------------------------------------------- /db/migrate/20131103212835_create_course_invitations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20131103212835_create_course_invitations.rb -------------------------------------------------------------------------------- /db/migrate/20131104030726_create_reminders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20131104030726_create_reminders.rb -------------------------------------------------------------------------------- /db/migrate/20131107182457_add_avatar_to_sponsor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20131107182457_add_avatar_to_sponsor.rb -------------------------------------------------------------------------------- /db/migrate/20131110220757_add_website_to_sponsor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20131110220757_add_website_to_sponsor.rb -------------------------------------------------------------------------------- /db/migrate/20131111024701_add_role_to_session_invitations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20131111024701_add_role_to_session_invitations.rb -------------------------------------------------------------------------------- /db/migrate/20131112221451_remove_seats_from_sessions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20131112221451_remove_seats_from_sessions.rb -------------------------------------------------------------------------------- /db/migrate/20131112221641_add_seats_to_sponsor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20131112221641_add_seats_to_sponsor.rb -------------------------------------------------------------------------------- /db/migrate/20131130211001_create_tutorials.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20131130211001_create_tutorials.rb -------------------------------------------------------------------------------- /db/migrate/20131130211305_create_feedbacks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20131130211305_create_feedbacks.rb -------------------------------------------------------------------------------- /db/migrate/20131201091346_rename_tutorials_table_name_column_to_title.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20131201091346_rename_tutorials_table_name_column_to_title.rb -------------------------------------------------------------------------------- /db/migrate/20131208030221_create_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20131208030221_create_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20131208030336_create_meeting_talks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20131208030336_create_meeting_talks.rb -------------------------------------------------------------------------------- /db/migrate/20131208141447_create_auth_services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20131208141447_create_auth_services.rb -------------------------------------------------------------------------------- /db/migrate/20131208145950_add_can_log_in_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20131208145950_add_can_log_in_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20131221204400_add_token_to_feedbacks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20131221204400_add_token_to_feedbacks.rb -------------------------------------------------------------------------------- /db/migrate/20131222160002_add_rating_to_feedbacks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20131222160002_add_rating_to_feedbacks.rb -------------------------------------------------------------------------------- /db/migrate/20140119093708_create_feedback_requests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20140119093708_create_feedback_requests.rb -------------------------------------------------------------------------------- /db/migrate/20140202112853_remove_token_from_feedbacks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20140202112853_remove_token_from_feedbacks.rb -------------------------------------------------------------------------------- /db/migrate/20140329201235_add_phone_number_to_members.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20140329201235_add_phone_number_to_members.rb -------------------------------------------------------------------------------- /db/migrate/20140403004924_create_course_tutors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20140403004924_create_course_tutors.rb -------------------------------------------------------------------------------- /db/migrate/20140417151614_add_name_to_meeting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20140417151614_add_name_to_meeting.rb -------------------------------------------------------------------------------- /db/migrate/20140417152406_add_description_to_meeting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20140417152406_add_description_to_meeting.rb -------------------------------------------------------------------------------- /db/migrate/20140417154809_add_slug_to_meeting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20140417154809_add_slug_to_meeting.rb -------------------------------------------------------------------------------- /db/migrate/20140425155706_add_host_to_course.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20140425155706_add_host_to_course.rb -------------------------------------------------------------------------------- /db/migrate/20140425160722_add_ticket_url_to_course.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20140425160722_add_ticket_url_to_course.rb -------------------------------------------------------------------------------- /db/migrate/20140501015844_add_verified_to_member.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20140501015844_add_verified_to_member.rb -------------------------------------------------------------------------------- /db/migrate/20140504143819_create_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20140504143819_create_job.rb -------------------------------------------------------------------------------- /db/migrate/20140504171455_add_company_to_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20140504171455_add_company_to_job.rb -------------------------------------------------------------------------------- /db/migrate/20140510232842_add_invitable_to_session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20140510232842_add_invitable_to_session.rb -------------------------------------------------------------------------------- /db/migrate/20140510234035_add_city_to_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20140510234035_add_city_to_address.rb -------------------------------------------------------------------------------- /db/migrate/20140610130020_create_chapters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20140610130020_create_chapters.rb -------------------------------------------------------------------------------- /db/migrate/20140610133755_create_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20140610133755_create_groups.rb -------------------------------------------------------------------------------- /db/migrate/20140610155915_create_subscriptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20140610155915_create_subscriptions.rb -------------------------------------------------------------------------------- /db/migrate/20140610202421_add_chapter_to_session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20140610202421_add_chapter_to_session.rb -------------------------------------------------------------------------------- /db/migrate/20140610212001_add_time_to_sessions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20140610212001_add_time_to_sessions.rb -------------------------------------------------------------------------------- /db/migrate/20140611191143_rolify_create_permissions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20140611191143_rolify_create_permissions.rb -------------------------------------------------------------------------------- /db/migrate/20140615010338_add_chapter_to_course.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20140615010338_add_chapter_to_course.rb -------------------------------------------------------------------------------- /db/migrate/20140615030540_add_avatar_cache_to_sponsor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20140615030540_add_avatar_cache_to_sponsor.rb -------------------------------------------------------------------------------- /db/migrate/20140621234319_add_email_to_chapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20140621234319_add_email_to_chapter.rb -------------------------------------------------------------------------------- /db/migrate/20140708114919_add_number_of_coaches_to_sponsor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20140708114919_add_number_of_coaches_to_sponsor.rb -------------------------------------------------------------------------------- /db/migrate/20140824234126_drop_reminders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20140824234126_drop_reminders.rb -------------------------------------------------------------------------------- /db/migrate/20140825005743_add_reminder_at_to_session_invitations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20140825005743_add_reminder_at_to_session_invitations.rb -------------------------------------------------------------------------------- /db/migrate/20140828194906_create_waiting_lists.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20140828194906_create_waiting_lists.rb -------------------------------------------------------------------------------- /db/migrate/20140908151822_add_twitter_handle_and_id_to_chapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20140908151822_add_twitter_handle_and_id_to_chapter.rb -------------------------------------------------------------------------------- /db/migrate/20140916134752_remove_verified_from_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20140916134752_remove_verified_from_user.rb -------------------------------------------------------------------------------- /db/migrate/20141003172945_create_testimonials.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20141003172945_create_testimonials.rb -------------------------------------------------------------------------------- /db/migrate/20141003195205_change_testimonial_string_to_text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20141003195205_change_testimonial_string_to_text.rb -------------------------------------------------------------------------------- /db/migrate/20141022052135_add_welcome_fields_to_member.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20141022052135_add_welcome_fields_to_member.rb -------------------------------------------------------------------------------- /db/migrate/20141203000909_create_events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20141203000909_create_events.rb -------------------------------------------------------------------------------- /db/migrate/20141203004824_create_sponsorships.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20141203004824_create_sponsorships.rb -------------------------------------------------------------------------------- /db/migrate/20141203012421_add_slug_to_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20141203012421_add_slug_to_event.rb -------------------------------------------------------------------------------- /db/migrate/20141203034740_add_schedule_to_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20141203034740_add_schedule_to_event.rb -------------------------------------------------------------------------------- /db/migrate/20141204011642_create_invitations_2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20141204011642_create_invitations_2.rb -------------------------------------------------------------------------------- /db/migrate/20141204164936_add_token_to_invitation_2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20141204164936_add_token_to_invitation_2.rb -------------------------------------------------------------------------------- /db/migrate/20141204173228_add_student_and_coach_spaces_to_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20141204173228_add_student_and_coach_spaces_to_event.rb -------------------------------------------------------------------------------- /db/migrate/20141204181137_add_coach_and_student_questionnaire_to_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20141204181137_add_coach_and_student_questionnaire_to_event.rb -------------------------------------------------------------------------------- /db/migrate/20141204181517_add_verified_and_verified_by_to_invitation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20141204181517_add_verified_and_verified_by_to_invitation.rb -------------------------------------------------------------------------------- /db/migrate/20141204221303_add_coach_description_to_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20141204221303_add_coach_description_to_event.rb -------------------------------------------------------------------------------- /db/migrate/20141204232033_add_info_to_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20141204232033_add_info_to_event.rb -------------------------------------------------------------------------------- /db/migrate/20150130001852_create_member_notes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20150130001852_create_member_notes.rb -------------------------------------------------------------------------------- /db/migrate/20150211023345_add_rsvp_close_time_to_sessions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20150211023345_add_rsvp_close_time_to_sessions.rb -------------------------------------------------------------------------------- /db/migrate/20150219223111_add_slug_to_chapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20150219223111_add_slug_to_chapter.rb -------------------------------------------------------------------------------- /db/migrate/20150222110321_add_announce_only_to_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20150222110321_add_announce_only_to_event.rb -------------------------------------------------------------------------------- /db/migrate/20150224001247_add_mailing_list_id_to_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20150224001247_add_mailing_list_id_to_group.rb -------------------------------------------------------------------------------- /db/migrate/20150328102113_add_invitable_to_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20150328102113_add_invitable_to_event.rb -------------------------------------------------------------------------------- /db/migrate/20150409140851_create_announcements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20150409140851_create_announcements.rb -------------------------------------------------------------------------------- /db/migrate/20150409145541_create_group_announcements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20150409145541_create_group_announcements.rb -------------------------------------------------------------------------------- /db/migrate/20150418235316_create_bans.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20150418235316_create_bans.rb -------------------------------------------------------------------------------- /db/migrate/20150419004358_create_delayed_jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20150419004358_create_delayed_jobs.rb -------------------------------------------------------------------------------- /db/migrate/20150505133258_add_tito_url_to_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20150505133258_add_tito_url_to_event.rb -------------------------------------------------------------------------------- /db/migrate/20150505161414_create_chapters_events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20150505161414_create_chapters_events.rb -------------------------------------------------------------------------------- /db/migrate/20150508211109_add_contacts_to_sponsors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20150508211109_add_contacts_to_sponsors.rb -------------------------------------------------------------------------------- /db/migrate/20150509200835_create_contacts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20150509200835_create_contacts.rb -------------------------------------------------------------------------------- /db/migrate/20150629202748_create_eligibility_inquiries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20150629202748_create_eligibility_inquiries.rb -------------------------------------------------------------------------------- /db/migrate/20150714194446_create_attendance_warnings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20150714194446_create_attendance_warnings.rb -------------------------------------------------------------------------------- /db/migrate/20150725165534_create_member_contacts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20150725165534_create_member_contacts.rb -------------------------------------------------------------------------------- /db/migrate/20150801134457_add_map_coords_to_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20150801134457_add_map_coords_to_address.rb -------------------------------------------------------------------------------- /db/migrate/20150814042120_add_show_faq_to_events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20150814042120_add_show_faq_to_events.rb -------------------------------------------------------------------------------- /db/migrate/20150823215449_acts_as_taggable_on_migration.acts_as_taggable_on_engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20150823215449_acts_as_taggable_on_migration.acts_as_taggable_on_engine.rb -------------------------------------------------------------------------------- /db/migrate/20150823215450_add_missing_unique_indices.acts_as_taggable_on_engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20150823215450_add_missing_unique_indices.acts_as_taggable_on_engine.rb -------------------------------------------------------------------------------- /db/migrate/20150823215451_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20150823215451_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb -------------------------------------------------------------------------------- /db/migrate/20150823215452_add_missing_taggable_index.acts_as_taggable_on_engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20150823215452_add_missing_taggable_index.acts_as_taggable_on_engine.rb -------------------------------------------------------------------------------- /db/migrate/20150823215453_change_collation_for_tag_names.acts_as_taggable_on_engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20150823215453_change_collation_for_tag_names.acts_as_taggable_on_engine.rb -------------------------------------------------------------------------------- /db/migrate/20151110180108_add_togglable_fields_to_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20151110180108_add_togglable_fields_to_event.rb -------------------------------------------------------------------------------- /db/migrate/20160123192121_add_approve_by_to_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20160123192121_add_approve_by_to_job.rb -------------------------------------------------------------------------------- /db/migrate/20160124024112_add_preferred_pronoun_to_member.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20160124024112_add_preferred_pronoun_to_member.rb -------------------------------------------------------------------------------- /db/migrate/20160124225727_add_active_to_chapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20160124225727_add_active_to_chapter.rb -------------------------------------------------------------------------------- /db/migrate/20160201210920_change_meeting_fields.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20160201210920_change_meeting_fields.rb -------------------------------------------------------------------------------- /db/migrate/20160207151405_create_meeting_invitation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20160207151405_create_meeting_invitation.rb -------------------------------------------------------------------------------- /db/migrate/20160211182925_change_meeting_description_to_text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20160211182925_change_meeting_description_to_text.rb -------------------------------------------------------------------------------- /db/migrate/20160228102639_change_preferred_pronoun_to_pronouns_in_member.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20160228102639_change_preferred_pronoun_to_pronouns_in_member.rb -------------------------------------------------------------------------------- /db/migrate/20160306231907_rename_table_sessions_to_workshop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20160306231907_rename_table_sessions_to_workshop.rb -------------------------------------------------------------------------------- /db/migrate/20160306234034_rename_session_ids_to_workshop_ids.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20160306234034_rename_session_ids_to_workshop_ids.rb -------------------------------------------------------------------------------- /db/migrate/20160307015747_rename_sponsor_sessions_to_workshop_sponsors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20160307015747_rename_sponsor_sessions_to_workshop_sponsors.rb -------------------------------------------------------------------------------- /db/migrate/20160307223728_rename_permissions_resource_type_value_to_workshop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20160307223728_rename_permissions_resource_type_value_to_workshop.rb -------------------------------------------------------------------------------- /db/migrate/20160320164227_add_attended_to_meeting_invitation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20160320164227_add_attended_to_meeting_invitation.rb -------------------------------------------------------------------------------- /db/migrate/20160326003113_add_more_data_to_bans.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20160326003113_add_more_data_to_bans.rb -------------------------------------------------------------------------------- /db/migrate/20160424081653_create_chapters_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20160424081653_create_chapters_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20160424175400_add_invited_flag_to_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20160424175400_add_invited_flag_to_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20160523171604_add_external_event_link_to_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20160523171604_add_external_event_link_to_event.rb -------------------------------------------------------------------------------- /db/migrate/20160523173346_add_more_fields_to_events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20160523173346_add_more_fields_to_events.rb -------------------------------------------------------------------------------- /db/migrate/20160526182452_add_rsvp_time_to_session_invitation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20160526182452_add_rsvp_time_to_session_invitation.rb -------------------------------------------------------------------------------- /db/migrate/20160614203328_add_target_group_to_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20160614203328_add_target_group_to_event.rb -------------------------------------------------------------------------------- /db/migrate/20161028141043_add_rsvp_open_time_to_workshops.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20161028141043_add_rsvp_open_time_to_workshops.rb -------------------------------------------------------------------------------- /db/migrate/20161228121833_add_workshop_id_to_feedback.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20161228121833_add_workshop_id_to_feedback.rb -------------------------------------------------------------------------------- /db/migrate/20180108210921_remove_time_from_workshops.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20180108210921_remove_time_from_workshops.rb -------------------------------------------------------------------------------- /db/migrate/20180109024411_add_rsvp_opens_at_to_workshops.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20180109024411_add_rsvp_opens_at_to_workshops.rb -------------------------------------------------------------------------------- /db/migrate/20180109030511_add_accessibility_info_to_sponsors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20180109030511_add_accessibility_info_to_sponsors.rb -------------------------------------------------------------------------------- /db/migrate/20180110212924_add_time_zone_to_chapters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20180110212924_add_time_zone_to_chapters.rb -------------------------------------------------------------------------------- /db/migrate/20180307221521_add_level_to_sponsors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20180307221521_add_level_to_sponsors.rb -------------------------------------------------------------------------------- /db/migrate/20180313165054_rename_table_session_invitations_to_workshop_invitations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20180313165054_rename_table_session_invitations_to_workshop_invitations.rb -------------------------------------------------------------------------------- /db/migrate/20180430001328_add_unique_index_to_meeting_slug.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20180430001328_add_unique_index_to_meeting_slug.rb -------------------------------------------------------------------------------- /db/migrate/20180519231943_add_unique_index_to_event_slug.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20180519231943_add_unique_index_to_event_slug.rb -------------------------------------------------------------------------------- /db/migrate/20180608010545_add_directions_to_addresses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20180608010545_add_directions_to_addresses.rb -------------------------------------------------------------------------------- /db/migrate/20181002213441_extend_job_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20181002213441_extend_job_model.rb -------------------------------------------------------------------------------- /db/migrate/20181012015419_create_friendly_id_slugs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20181012015419_create_friendly_id_slugs.rb -------------------------------------------------------------------------------- /db/migrate/20181012015504_add_slug_to_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20181012015504_add_slug_to_job.rb -------------------------------------------------------------------------------- /db/migrate/20181013224547_add_status_to_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20181013224547_add_status_to_job.rb -------------------------------------------------------------------------------- /db/migrate/20181019002645_add_description_to_chapters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20181019002645_add_description_to_chapters.rb -------------------------------------------------------------------------------- /db/migrate/20181021014646_add_image_to_chapters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20181021014646_add_image_to_chapters.rb -------------------------------------------------------------------------------- /db/migrate/20191018175052_add_ends_at_to_workshops.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20191018175052_add_ends_at_to_workshops.rb -------------------------------------------------------------------------------- /db/migrate/20200120111440_add_accepted_toc_at_to_member.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20200120111440_add_accepted_toc_at_to_member.rb -------------------------------------------------------------------------------- /db/migrate/20200124124311_add_opt_in_newsletter_at_to_member.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20200124124311_add_opt_in_newsletter_at_to_member.rb -------------------------------------------------------------------------------- /db/migrate/20200311233721_add_virtual_to_workshop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20200311233721_add_virtual_to_workshop.rb -------------------------------------------------------------------------------- /db/migrate/20200312172212_add_student_and_coach_spaces_to_workshop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20200312172212_add_student_and_coach_spaces_to_workshop.rb -------------------------------------------------------------------------------- /db/migrate/20200313211614_add_slack_channel_and_slack_channel_link_to_workshop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20200313211614_add_slack_channel_and_slack_channel_link_to_workshop.rb -------------------------------------------------------------------------------- /db/migrate/20200511151348_add_automated_rsvp_to_workshop_invitation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20200511151348_add_automated_rsvp_to_workshop_invitation.rb -------------------------------------------------------------------------------- /db/migrate/20200521151343_add_tutorial_to_workshop_invitation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20200521151343_add_tutorial_to_workshop_invitation.rb -------------------------------------------------------------------------------- /db/migrate/20200522142646_add_email_index_to_member.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20200522142646_add_email_index_to_member.rb -------------------------------------------------------------------------------- /db/migrate/20200721072708_update_contacts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20200721072708_update_contacts.rb -------------------------------------------------------------------------------- /db/migrate/20200805104520_add_level_to_sponsorship.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20200805104520_add_level_to_sponsorship.rb -------------------------------------------------------------------------------- /db/migrate/20200815141515_add_token_to_contact.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20200815141515_add_token_to_contact.rb -------------------------------------------------------------------------------- /db/migrate/20201102173506_create_activities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20201102173506_create_activities.rb -------------------------------------------------------------------------------- /db/migrate/20201109043756_add_end_dt_to_meetings_courses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20201109043756_add_end_dt_to_meetings_courses.rb -------------------------------------------------------------------------------- /db/migrate/20201120012424_drop_member_contacts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20201120012424_drop_member_contacts.rb -------------------------------------------------------------------------------- /db/migrate/20201120012812_remove_contact_details_from_sponsor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20201120012812_remove_contact_details_from_sponsor.rb -------------------------------------------------------------------------------- /db/migrate/20220820180050_add_virtual_to_events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20220820180050_add_virtual_to_events.rb -------------------------------------------------------------------------------- /db/migrate/20220820215847_add_time_zone_to_events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20220820215847_add_time_zone_to_events.rb -------------------------------------------------------------------------------- /db/migrate/20230722001140_add_missing_indexes_on_taggings.acts_as_taggable_on_engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20230722001140_add_missing_indexes_on_taggings.acts_as_taggable_on_engine.rb -------------------------------------------------------------------------------- /db/migrate/20230722001141_add_tenant_to_taggings.acts_as_taggable_on_engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20230722001141_add_tenant_to_taggings.acts_as_taggable_on_engine.rb -------------------------------------------------------------------------------- /db/migrate/20230801074547_add_service_name_to_active_storage_blobs.active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20230801074547_add_service_name_to_active_storage_blobs.active_storage.rb -------------------------------------------------------------------------------- /db/migrate/20230801074548_create_active_storage_variant_records.active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20230801074548_create_active_storage_variant_records.active_storage.rb -------------------------------------------------------------------------------- /db/migrate/20231230162506_add_last_overridden_by_id_to_workshop_invitations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20231230162506_add_last_overridden_by_id_to_workshop_invitations.rb -------------------------------------------------------------------------------- /db/migrate/20250806181500_remove_twitter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20250806181500_remove_twitter.rb -------------------------------------------------------------------------------- /db/migrate/20250820134727_create_dietary_restriction_enum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20250820134727_create_dietary_restriction_enum.rb -------------------------------------------------------------------------------- /db/migrate/20250820145012_add_dietary_restrictions_to_members.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20250820145012_add_dietary_restrictions_to_members.rb -------------------------------------------------------------------------------- /db/migrate/20250823151717_add_how_you_found_us_options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20250823151717_add_how_you_found_us_options.rb -------------------------------------------------------------------------------- /db/migrate/20251120090000_add_missing_indexes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/migrate/20251120090000_add_missing_indexes.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /docker-compose.env: -------------------------------------------------------------------------------- 1 | DB_HOST=db 2 | DB_USER=postgres 3 | POSTGRES_PASSWORD=password 4 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/flodesk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/lib/flodesk.rb -------------------------------------------------------------------------------- /lib/services/event_calendar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/lib/services/event_calendar.rb -------------------------------------------------------------------------------- /lib/services/mailing_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/lib/services/mailing_list.rb -------------------------------------------------------------------------------- /lib/services/ticket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/lib/services/ticket.rb -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/delete_member.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/lib/tasks/delete_member.rake -------------------------------------------------------------------------------- /lib/tasks/feedback.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/lib/tasks/feedback.rake -------------------------------------------------------------------------------- /lib/tasks/mailing_list.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/lib/tasks/mailing_list.rake -------------------------------------------------------------------------------- /lib/tasks/reminders.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/lib/tasks/reminders.rake -------------------------------------------------------------------------------- /lib/tasks/rubocop.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/lib/tasks/rubocop.rake -------------------------------------------------------------------------------- /lib/tasks/seed_tags.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/lib/tasks/seed_tags.rake -------------------------------------------------------------------------------- /lib/tasks/workshop.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/lib/tasks/workshop.rake -------------------------------------------------------------------------------- /lib/templates/erb/scaffold/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/lib/templates/erb/scaffold/_form.html.erb -------------------------------------------------------------------------------- /lib/verifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/lib/verifier.rb -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /native-installation-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/native-installation-instructions.md -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/public/404.html -------------------------------------------------------------------------------- /public/406-unsupported-browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/public/406-unsupported-browser.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/public/500.html -------------------------------------------------------------------------------- /public/Icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/public/Icon-128.png -------------------------------------------------------------------------------- /public/Icon-196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/public/Icon-196.png -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/public/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/public/icon.png -------------------------------------------------------------------------------- /public/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/public/icon.svg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/sitemap.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/public/sitemap.xml.gz -------------------------------------------------------------------------------- /spec/controllers/admin/invitations_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/controllers/admin/invitations_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/admin/member_notes_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/controllers/admin/member_notes_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/admin/member_search_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/controllers/admin/member_search_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/admin/sponsors_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/controllers/admin/sponsors_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/admin/workshops_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/controllers/admin/workshops_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/auth_services_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/controllers/auth_services_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/member/details_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/controllers/member/details_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/members_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/controllers/members_controller_spec.rb -------------------------------------------------------------------------------- /spec/fabricators/address_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/fabricators/address_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/announcement_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/fabricators/announcement_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/attendance_warning_fabricator.rb: -------------------------------------------------------------------------------- 1 | Fabricator(:attendance_warning) do 2 | end 3 | -------------------------------------------------------------------------------- /spec/fabricators/auth_service_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/fabricators/auth_service_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/ban_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/fabricators/ban_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/chapter_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/fabricators/chapter_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/contact_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/fabricators/contact_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/event_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/fabricators/event_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/feedback_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/fabricators/feedback_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/feedback_request_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/fabricators/feedback_request_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/group_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/fabricators/group_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/invitation_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/fabricators/invitation_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/meeting_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/fabricators/meeting_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/meeting_invitation_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/fabricators/meeting_invitation_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/member_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/fabricators/member_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/member_note_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/fabricators/member_note_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/permission_fabricator.rb: -------------------------------------------------------------------------------- 1 | Fabricator(:permission) do 2 | members(count: 2) 3 | resource 4 | end 5 | -------------------------------------------------------------------------------- /spec/fabricators/role_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/fabricators/role_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/sponsor_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/fabricators/sponsor_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/sponsorship_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/fabricators/sponsorship_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/subscription_fabricator.rb: -------------------------------------------------------------------------------- 1 | Fabricator(:subscription) do 2 | member 3 | group 4 | end 5 | -------------------------------------------------------------------------------- /spec/fabricators/testimonials_fabricator.rb: -------------------------------------------------------------------------------- 1 | Fabricator(:testimonial) do 2 | member 3 | text { Faker::Lorem.paragraph } 4 | end 5 | -------------------------------------------------------------------------------- /spec/fabricators/tutorial_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/fabricators/tutorial_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/waiting_list_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/fabricators/waiting_list_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/workshop_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/fabricators/workshop_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/workshop_invitation_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/fabricators/workshop_invitation_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/workshop_sponsor_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/fabricators/workshop_sponsor_fabricator.rb -------------------------------------------------------------------------------- /spec/features/accepting_invitation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/accepting_invitation_spec.rb -------------------------------------------------------------------------------- /spec/features/accepting_terms_and_conditions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/accepting_terms_and_conditions_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/accessing_portal_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/admin/accessing_portal_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/add_user_to_workshop_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/admin/add_user_to_workshop_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/announcements_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/admin/announcements_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/chapter/feedback_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/admin/chapter/feedback_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/chapters_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/admin/chapters_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/event_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/admin/event_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/feedback_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/admin/feedback_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/filtering_sponsors_list_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/admin/filtering_sponsors_list_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/groups_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/admin/groups_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/manage_event_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/admin/manage_event_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/manage_sponsor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/admin/manage_sponsor_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/manage_workshop_attendances_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/admin/manage_workshop_attendances_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/managing_meeting_invitations_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/admin/managing_meeting_invitations_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/managing_organisers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/admin/managing_organisers_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/managing_testimonials_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/admin/managing_testimonials_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/meeting_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/admin/meeting_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/member_search_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/admin/member_search_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/members_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/admin/members_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/sponsor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/admin/sponsor_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/workshops_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/admin/workshops_spec.rb -------------------------------------------------------------------------------- /spec/features/chapter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/chapter_spec.rb -------------------------------------------------------------------------------- /spec/features/coach_accepting_invitation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/coach_accepting_invitation_spec.rb -------------------------------------------------------------------------------- /spec/features/internationalization_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/internationalization_spec.rb -------------------------------------------------------------------------------- /spec/features/listing_coaches_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/listing_coaches_spec.rb -------------------------------------------------------------------------------- /spec/features/listing_events_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/listing_events_spec.rb -------------------------------------------------------------------------------- /spec/features/manage_contact_preferences_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/manage_contact_preferences_spec.rb -------------------------------------------------------------------------------- /spec/features/managing_workshop_attendance_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/managing_workshop_attendance_spec.rb -------------------------------------------------------------------------------- /spec/features/member/login_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/member/login_spec.rb -------------------------------------------------------------------------------- /spec/features/member_feedback_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/member_feedback_spec.rb -------------------------------------------------------------------------------- /spec/features/member_joining_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/member_joining_spec.rb -------------------------------------------------------------------------------- /spec/features/member_portal_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/member_portal_spec.rb -------------------------------------------------------------------------------- /spec/features/member_updating_details_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/member_updating_details_spec.rb -------------------------------------------------------------------------------- /spec/features/sponsors_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/sponsors_spec.rb -------------------------------------------------------------------------------- /spec/features/subscribing_to_emails_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/subscribing_to_emails_spec.rb -------------------------------------------------------------------------------- /spec/features/subscribing_to_newsletter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/subscribing_to_newsletter_spec.rb -------------------------------------------------------------------------------- /spec/features/view_event_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/view_event_spec.rb -------------------------------------------------------------------------------- /spec/features/viewing_a_meeting_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/viewing_a_meeting_spec.rb -------------------------------------------------------------------------------- /spec/features/viewing_a_workshop_invitation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/viewing_a_workshop_invitation_spec.rb -------------------------------------------------------------------------------- /spec/features/viewing_a_workshop_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/viewing_a_workshop_spec.rb -------------------------------------------------------------------------------- /spec/features/viewing_pages_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/viewing_pages_spec.rb -------------------------------------------------------------------------------- /spec/features/visiting_homepage_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/features/visiting_homepage_spec.rb -------------------------------------------------------------------------------- /spec/helpers/application_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/helpers/application_helper_spec.rb -------------------------------------------------------------------------------- /spec/lib/services/flodesk_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/lib/services/flodesk_spec.rb -------------------------------------------------------------------------------- /spec/lib/services/mailing_list_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/lib/services/mailing_list_spec.rb -------------------------------------------------------------------------------- /spec/lib/tasks/delete_member_rake_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/lib/tasks/delete_member_rake_spec.rb -------------------------------------------------------------------------------- /spec/lib/tasks/feedback_rake_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/lib/tasks/feedback_rake_spec.rb -------------------------------------------------------------------------------- /spec/lib/tasks/mailing_list_rake_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/lib/tasks/mailing_list_rake_spec.rb -------------------------------------------------------------------------------- /spec/lib/tasks/reminders_meeting_rake_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/lib/tasks/reminders_meeting_rake_spec.rb -------------------------------------------------------------------------------- /spec/lib/tasks/reminders_workshop_rake_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/lib/tasks/reminders_workshop_rake_spec.rb -------------------------------------------------------------------------------- /spec/lib/verifier_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/lib/verifier_spec.rb -------------------------------------------------------------------------------- /spec/mailers/event_invitation_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/mailers/event_invitation_mailer_spec.rb -------------------------------------------------------------------------------- /spec/mailers/feedback_request_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/mailers/feedback_request_mailer_spec.rb -------------------------------------------------------------------------------- /spec/mailers/meeting_invitation_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/mailers/meeting_invitation_mailer_spec.rb -------------------------------------------------------------------------------- /spec/mailers/member_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/mailers/member_mailer_spec.rb -------------------------------------------------------------------------------- /spec/mailers/previews/event_invitation_mailer_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/mailers/previews/event_invitation_mailer_preview.rb -------------------------------------------------------------------------------- /spec/mailers/previews/meeting_invitation_mailer_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/mailers/previews/meeting_invitation_mailer_preview.rb -------------------------------------------------------------------------------- /spec/mailers/previews/member_mailer_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/mailers/previews/member_mailer_preview.rb -------------------------------------------------------------------------------- /spec/mailers/previews/virtual_workshop_invitation_mailer_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/mailers/previews/virtual_workshop_invitation_mailer_preview.rb -------------------------------------------------------------------------------- /spec/mailers/previews/workshop_invitation_mailer_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/mailers/previews/workshop_invitation_mailer_preview.rb -------------------------------------------------------------------------------- /spec/mailers/virtual_workshop_invitation_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/mailers/virtual_workshop_invitation_mailer_spec.rb -------------------------------------------------------------------------------- /spec/mailers/workshop_invitation_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/mailers/workshop_invitation_mailer_spec.rb -------------------------------------------------------------------------------- /spec/models/address_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/models/address_spec.rb -------------------------------------------------------------------------------- /spec/models/attendance_warning_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/models/attendance_warning_spec.rb -------------------------------------------------------------------------------- /spec/models/ban_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/models/ban_spec.rb -------------------------------------------------------------------------------- /spec/models/chapter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/models/chapter_spec.rb -------------------------------------------------------------------------------- /spec/models/concerns/listable_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/models/concerns/listable_spec.rb -------------------------------------------------------------------------------- /spec/models/concerns/permissions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/models/concerns/permissions_spec.rb -------------------------------------------------------------------------------- /spec/models/eligibility_inquiry_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/models/eligibility_inquiry_spec.rb -------------------------------------------------------------------------------- /spec/models/event_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/models/event_spec.rb -------------------------------------------------------------------------------- /spec/models/feedback_request_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/models/feedback_request_spec.rb -------------------------------------------------------------------------------- /spec/models/feedback_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/models/feedback_spec.rb -------------------------------------------------------------------------------- /spec/models/group_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/models/group_spec.rb -------------------------------------------------------------------------------- /spec/models/invitation_manager_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/models/invitation_manager_spec.rb -------------------------------------------------------------------------------- /spec/models/invitation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/models/invitation_spec.rb -------------------------------------------------------------------------------- /spec/models/meeting_invitation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/models/meeting_invitation_spec.rb -------------------------------------------------------------------------------- /spec/models/meeting_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/models/meeting_spec.rb -------------------------------------------------------------------------------- /spec/models/meeting_talk_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/models/meeting_talk_spec.rb -------------------------------------------------------------------------------- /spec/models/member_note_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/models/member_note_spec.rb -------------------------------------------------------------------------------- /spec/models/member_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/models/member_spec.rb -------------------------------------------------------------------------------- /spec/models/role_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/models/role_spec.rb -------------------------------------------------------------------------------- /spec/models/sponsor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/models/sponsor_spec.rb -------------------------------------------------------------------------------- /spec/models/sponsors_search_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/models/sponsors_search_spec.rb -------------------------------------------------------------------------------- /spec/models/tutorial_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/models/tutorial_spec.rb -------------------------------------------------------------------------------- /spec/models/waiting_list_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/models/waiting_list_spec.rb -------------------------------------------------------------------------------- /spec/models/workshop_calendar_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/models/workshop_calendar_spec.rb -------------------------------------------------------------------------------- /spec/models/workshop_invitation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/models/workshop_invitation_spec.rb -------------------------------------------------------------------------------- /spec/models/workshop_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/models/workshop_spec.rb -------------------------------------------------------------------------------- /spec/models/workshop_sponsor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/models/workshop_sponsor_spec.rb -------------------------------------------------------------------------------- /spec/presenters/address_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/presenters/address_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/chapter_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/presenters/chapter_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/contact_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/presenters/contact_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/event_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/presenters/event_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/invitation_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/presenters/invitation_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/meeting_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/presenters/meeting_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/member_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/presenters/member_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/sponsor_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/presenters/sponsor_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/virtual_workshop_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/presenters/virtual_workshop_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/workshop_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/presenters/workshop_presenter_spec.rb -------------------------------------------------------------------------------- /spec/services/auditor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/services/auditor_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/capybara.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/support/capybara.rb -------------------------------------------------------------------------------- /spec/support/chapter-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/support/chapter-image.png -------------------------------------------------------------------------------- /spec/support/codebar-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/support/codebar-logo.png -------------------------------------------------------------------------------- /spec/support/helpers/login_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/support/helpers/login_helpers.rb -------------------------------------------------------------------------------- /spec/support/omniauth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/support/omniauth.rb -------------------------------------------------------------------------------- /spec/support/rake_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/support/rake_tasks.rb -------------------------------------------------------------------------------- /spec/support/select_from_chosen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/support/select_from_chosen.rb -------------------------------------------------------------------------------- /spec/support/shared_examples/behaves_like_an_invitation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/support/shared_examples/behaves_like_an_invitation.rb -------------------------------------------------------------------------------- /spec/support/shared_examples/behaves_like_an_invitation_route.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/support/shared_examples/behaves_like_an_invitation_route.rb -------------------------------------------------------------------------------- /spec/support/shared_examples/behaves_like_date_time_concerns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/support/shared_examples/behaves_like_date_time_concerns.rb -------------------------------------------------------------------------------- /spec/support/shared_examples/behaves_like_invitable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/support/shared_examples/behaves_like_invitable.rb -------------------------------------------------------------------------------- /spec/support/shared_examples/behaves_like_managing_workshop_attendance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/support/shared_examples/behaves_like_managing_workshop_attendance.rb -------------------------------------------------------------------------------- /spec/support/shared_examples/behaves_like_sending_workshop_emails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/support/shared_examples/behaves_like_sending_workshop_emails.rb -------------------------------------------------------------------------------- /spec/support/shared_examples/behaves_like_viewing_workshop_actions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/support/shared_examples/behaves_like_viewing_workshop_actions.rb -------------------------------------------------------------------------------- /spec/support/shared_examples/behaves_like_viewing_workshop_details.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/support/shared_examples/behaves_like_viewing_workshop_details.rb -------------------------------------------------------------------------------- /spec/support/shared_examples/behaves_link_member_viewing_workshop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/planner/HEAD/spec/support/shared_examples/behaves_link_member_viewing_workshop.rb -------------------------------------------------------------------------------- /tmp/pids/.keep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------