├── .codeclimate.yml ├── .env.development.gpg ├── .env.heroku ├── 1dc44930d2cea05792388a1178c936fe.gpg ├── affinityworks.gpg ├── dev-affinityworks.gpg └── staging-affinityworks.gpg ├── .env.test.gpg ├── .gitignore ├── .nvmrc ├── .rubocop.yml ├── .ruby-version ├── .travis.yml ├── Aptfile ├── Aptfile_README.md ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── LICENSE ├── Procfile ├── Procfile.dev ├── README.md ├── Rakefile ├── app.json ├── app ├── admin │ ├── address.rb │ ├── answer.rb │ ├── canvassing_effort.rb │ ├── dashboard.rb │ ├── donation.rb │ ├── email_address.rb │ ├── event.rb │ ├── facebook_share.rb │ ├── form.rb │ ├── fundraising_page.rb │ ├── group.rb │ ├── oauth_application.rb │ ├── outreach.rb │ ├── person.rb │ ├── petition.rb │ ├── phone_number.rb │ ├── profile.rb │ ├── query.rb │ ├── query_set.rb │ ├── question.rb │ ├── recipient.rb │ ├── referrer_data.rb │ ├── reminder.rb │ ├── response.rb │ ├── script_question.rb │ ├── share_page.rb │ ├── signature.rb │ ├── submission.rb │ ├── target.rb │ ├── ticket.rb │ ├── ticket_level.rb │ └── twitter_share.rb ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ └── .keep │ ├── javascripts │ │ ├── active_admin.js.coffee │ │ ├── application.js │ │ ├── bootstrap.js.coffee │ │ ├── cable.js │ │ ├── channels │ │ │ └── .keep │ │ ├── groups.coffee │ │ ├── mask.js │ │ ├── members.js │ │ ├── profile.coffee │ │ └── zipcodes.coffee │ └── stylesheets │ │ ├── active_admin.scss │ │ ├── application.scss │ │ ├── bootstrap_and_overrides.css.less │ │ ├── buttons.scss │ │ ├── create_group_form.scss │ │ ├── join_group_page.scss │ │ ├── login_page.scss │ │ ├── member_form.scss │ │ ├── member_page.scss │ │ ├── pdf.scss │ │ ├── profile.scss │ │ ├── scaffolds.scss │ │ └── signup_form.scss ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── controllers │ ├── affiliates_controller.rb │ ├── api │ │ └── v1 │ │ │ ├── attendances_controller.rb │ │ │ ├── base_api_controller.rb │ │ │ ├── entry_point_controller.rb │ │ │ └── people_controller.rb │ ├── application_controller.rb │ ├── attendances_controller.rb │ ├── concerns │ │ ├── .keep │ │ ├── signup_handlers.rb │ │ └── signup_handlers │ │ │ ├── create_group.rb │ │ │ ├── handler.rb │ │ │ └── join_group.rb │ ├── dashboard_controller.rb │ ├── events_controller.rb │ ├── groups_controller.rb │ ├── imports_controller.rb │ ├── join.rb │ ├── members_controller.rb │ ├── memberships_controller.rb │ ├── notes_controller.rb │ ├── people │ │ └── omniauth_callbacks_controller.rb │ ├── profile_controller.rb │ ├── queries_controller.rb │ ├── shas_controller.rb │ ├── static_feature_toggles_controller.rb │ ├── subgroups_controller.rb │ ├── tags_controller.rb │ ├── wellknown_controller.rb │ └── zipcodes_controller.rb ├── helpers │ ├── application_helper.rb │ ├── attendances_helper.rb │ ├── devise_helper.rb │ ├── groups_helper.rb │ ├── people_helper.rb │ ├── subdomain_helper.rb │ └── zipcodes_helper.rb ├── jobs │ ├── action_network_request_person_job.rb │ ├── action_network_request_resource_job.rb │ ├── application_job.rb │ └── google_group_jobs.rb ├── mailers │ ├── application_mailer.rb │ └── group_mailer.rb ├── models │ ├── ability.rb │ ├── address.rb │ ├── address_input_group.rb │ ├── advocacy_campaign.rb │ ├── affiliation.rb │ ├── answer.rb │ ├── api.rb │ ├── api │ │ ├── README.md │ │ ├── action_network │ │ │ ├── attendance.rb │ │ │ ├── attendances.rb │ │ │ ├── event.rb │ │ │ ├── events.rb │ │ │ ├── export.rb │ │ │ ├── export │ │ │ │ └── taggings.rb │ │ │ ├── import.rb │ │ │ ├── people.rb │ │ │ ├── person.rb │ │ │ ├── remote_attendance.rb │ │ │ ├── taggings.rb │ │ │ └── tags.rb │ │ ├── collections │ │ │ ├── attendances.rb │ │ │ ├── collection.rb │ │ │ ├── events.rb │ │ │ ├── people.rb │ │ │ ├── taggings.rb │ │ │ └── tags.rb │ │ └── entry_point.rb │ ├── application_record.rb │ ├── attendance.rb │ ├── attendance_event.rb │ ├── attendance_origin.rb │ ├── canvass.rb │ ├── canvassing_effort.rb │ ├── concerns │ │ ├── .keep │ │ ├── api │ │ │ └── identifiers.rb │ │ ├── bulk_import.rb │ │ ├── can_signup.rb │ │ ├── has_attendance_event.rb │ │ ├── has_feature_toggles.rb │ │ ├── has_remote_event.rb │ │ ├── networkable.rb │ │ └── url_helpers.rb │ ├── custom_form.rb │ ├── donation.rb │ ├── email_address.rb │ ├── email_input_group.rb │ ├── email_share.rb │ ├── employer_address.rb │ ├── event.rb │ ├── event_address.rb │ ├── facebook_event.rb │ ├── facebook_share.rb │ ├── feature_toggle.rb │ ├── form.rb │ ├── form_input_group.rb │ ├── fundraising_page.rb │ ├── google_group.rb │ ├── group.rb │ ├── group_address.rb │ ├── identity.rb │ ├── membership.rb │ ├── network.rb │ ├── network_membership.rb │ ├── no_attendance_event.rb │ ├── note.rb │ ├── origin.rb │ ├── outreach.rb │ ├── payment.rb │ ├── person.rb │ ├── person_input_group.rb │ ├── personal_address.rb │ ├── petition.rb │ ├── phone_input_group.rb │ ├── phone_number.rb │ ├── profile.rb │ ├── query.rb │ ├── query_set.rb │ ├── question.rb │ ├── recipient.rb │ ├── referrer_data.rb │ ├── reminder.rb │ ├── remote_event.rb │ ├── response.rb │ ├── script.rb │ ├── script_question.rb │ ├── share_page.rb │ ├── signature.rb │ ├── signup_form.rb │ ├── submission.rb │ ├── sync_log.rb │ ├── tag.rb │ ├── tag_origin.rb │ ├── tagging.rb │ ├── target.rb │ ├── ticket.rb │ ├── ticket_level.rb │ ├── twitter_share.rb │ └── zipcode.rb ├── presenters │ └── person_presenter.rb ├── representers │ ├── api │ │ ├── action_network │ │ │ ├── attendance_representer.rb │ │ │ ├── attendances_representer.rb │ │ │ ├── event_representer.rb │ │ │ ├── export │ │ │ │ ├── attendance_representer.rb │ │ │ │ ├── event_representer.rb │ │ │ │ └── tagging_representer.rb │ │ │ └── person_representer.rb │ │ ├── collections │ │ │ ├── attendances_representer.rb │ │ │ ├── events_representer.rb │ │ │ ├── people_representer.rb │ │ │ ├── representer.rb │ │ │ ├── taggings_representer.rb │ │ │ └── tags_representer.rb │ │ ├── entry_point_representer.rb │ │ └── resources │ │ │ ├── address_representer.rb │ │ │ ├── attendance_representer.rb │ │ │ ├── birthdate_representer.rb │ │ │ ├── email_address_representer.rb │ │ │ ├── event_representer.rb │ │ │ ├── identified.rb │ │ │ ├── person_representer.rb │ │ │ ├── phone_number_representer.rb │ │ │ ├── profile_representer.rb │ │ │ ├── representer.rb │ │ │ ├── tag_representer.rb │ │ │ └── tagging_representer.rb │ └── json_api │ │ ├── attendance_with_events_representer.rb │ │ ├── attendances_representer.rb │ │ ├── event_representer.rb │ │ ├── events_representer.rb │ │ ├── group_representer.rb │ │ ├── groups_representer.rb │ │ ├── member_representer.rb │ │ ├── membership_group_representer.rb │ │ ├── membership_representer.rb │ │ ├── notes_representer.rb │ │ ├── people_representer.rb │ │ ├── person_representer.rb │ │ └── tags_representer.rb ├── serializers │ └── group_serializer.rb ├── services │ ├── README.md │ ├── aggregate_error.rb │ ├── crypto.rb │ ├── facebook.rb │ ├── google_api │ │ ├── add_member_to_google_group.rb │ │ ├── build_directory_service.rb │ │ ├── create_google_group.rb │ │ ├── fetch_google_group.rb │ │ ├── get_authorization.rb │ │ ├── list_members_in_google_group.rb │ │ ├── remove_member_from_google_group.rb │ │ ├── roles.rb │ │ ├── service.rb │ │ └── update_google_group_settings.rb │ ├── members │ │ └── after_create.rb │ ├── memberships │ │ └── after_destroy.rb │ ├── migration.rb │ ├── oauth.rb │ ├── static_feature_toggle.rb │ └── subgroups │ │ └── after_create.rb └── views │ ├── active_admin │ └── devise │ │ ├── passwords │ │ ├── edit.html.erb │ │ └── new.html.erb │ │ ├── registrations │ │ ├── edit.html.erb │ │ └── new.html.erb │ │ └── sessions │ │ └── new.html.erb │ ├── affiliates │ └── index.html.erb │ ├── application │ ├── _client.html.erb │ └── _flash_messages.html.erb │ ├── attendances │ ├── index.html.erb │ ├── index.pdf.erb │ ├── new.html.erb │ ├── pdf_footer.pdf.erb │ └── pdf_header.pdf.erb │ ├── dashboard │ ├── index.html.erb │ └── show.html.erb │ ├── devise │ ├── confirmations │ │ └── new.html.erb │ ├── mailer │ │ ├── confirmation_instructions.html.erb │ │ ├── password_change.html.erb │ │ ├── reset_password_instructions.html.erb │ │ └── unlock_instructions.html.erb │ ├── passwords │ │ ├── edit.html.erb │ │ └── new.html.erb │ ├── registrations │ │ ├── edit.html.erb │ │ └── new.html.erb │ ├── sessions │ │ └── new.html.erb │ ├── shared │ │ └── _links.html.erb │ └── unlocks │ │ └── new.html.erb │ ├── events │ ├── index.html.erb │ ├── index.xlsx.axlsx │ └── show.html.erb │ ├── group_mailer │ ├── create_group_email.text.erb │ └── join_group_email.text.erb │ ├── groups │ ├── _already_joined_notice.html.erb │ ├── _form.html.erb │ ├── _group.json.jbuilder │ ├── _join_buttons_logged_in.html.erb │ ├── _join_buttons_logged_out.html.erb │ ├── _navigation.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── join.html.erb │ ├── new.html.erb │ ├── show.html.erb │ └── show.json.jbuilder │ ├── imports │ ├── attendances.erb │ ├── find.html.erb │ ├── new.html.erb │ └── new_facebook_attendance.erb │ ├── layouts │ ├── _anonymous_user_header.html.erb │ ├── _google_analytics.html.erb │ ├── _header.html.erb │ ├── _modal_header.html.erb │ ├── application.html.erb │ ├── mailer.html.erb │ ├── mailer.text.erb │ ├── pdf.html.erb │ └── signup.html.erb │ ├── members │ ├── _email_address_fields.html.erb │ ├── _error_alert.html.erb │ ├── _form.html.erb │ ├── _person.json.jbuilder │ ├── _phone_number_fields.html.erb │ ├── _signup_form_oauth.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── new.html.erb │ ├── show.html.erb │ ├── show.json.jbuilder │ ├── signup_form_email.html.erb │ ├── signup_form_facebook.html.erb │ └── signup_form_google.html.erb │ ├── profile │ ├── _group_list_item.html.erb │ ├── _navigation.html.erb │ └── index.html.erb │ ├── shared │ ├── _modal_actions.html.erb │ ├── _signup_aggregate_error_alert.html.erb │ ├── _signup_error_alert.html.erb │ ├── _signup_fields_email.html.erb │ └── _signup_fields_oauth.html.erb │ ├── subgroups │ ├── _organizer_info_logged_out.html.erb │ ├── _submit_logged_in.html.erb │ ├── _submit_logged_out.html.erb │ ├── new.html.erb │ ├── signup_form_email.html.erb │ └── signup_form_oauth.html.erb │ └── zipcodes │ └── show.json.jbuilder ├── bin ├── _blackbox_common.sh ├── _blackbox_common_test.sh ├── _stack_lib.sh ├── blackbox_README.md ├── blackbox_addadmin ├── blackbox_cat ├── blackbox_decrypt_all_files ├── blackbox_deregister_file ├── blackbox_diff ├── blackbox_edit ├── blackbox_edit_end ├── blackbox_edit_start ├── blackbox_initialize ├── blackbox_list_admins ├── blackbox_list_files ├── blackbox_listadmins ├── blackbox_postdeploy ├── blackbox_recurse ├── blackbox_register_new_file ├── blackbox_removeadmin ├── blackbox_shred_all_files ├── blackbox_update_all_files ├── blackbox_whatsnew ├── bourbon ├── bundle ├── bundler ├── byebug ├── copy_configs ├── derailed ├── docker-build ├── docker-cmd ├── docker-down ├── docker-up ├── env ├── erubis ├── foreman ├── heapy ├── httparty ├── install ├── listen ├── mongrel_rpm ├── newrelic ├── newrelic_cmd ├── nokogiri ├── nrdebug ├── puma ├── pumactl ├── rackup ├── rails ├── rake ├── rdebug-ide ├── resque ├── resque-web ├── run ├── run-services ├── run-web-docker ├── safe_yaml ├── sass ├── sass-convert ├── scss ├── seed-db ├── setup ├── spring ├── sprockets ├── thor ├── tilt ├── update ├── wkhtmltopdf └── wkhtmltopdf-linux-amd64 ├── client ├── .babelrc ├── REACT_ON_RAILS_CLIENT_README.md ├── app │ └── bundles │ │ └── Events │ │ ├── actions │ │ ├── AlertsActions.jsx │ │ ├── AttendancesActions.jsx │ │ ├── EventsActions.jsx │ │ ├── GroupsActions.jsx │ │ ├── MembersActions.jsx │ │ ├── MembershipsActions.jsx │ │ ├── ProfileActions.jsx │ │ ├── StaticFeatureToggleActions.js │ │ ├── index.jsx │ │ └── types.jsx │ │ ├── components │ │ ├── ActionHistory.jsx │ │ ├── ActionHistoryItem.jsx │ │ ├── Address.jsx │ │ ├── Alert.jsx │ │ ├── App.jsx │ │ ├── Attendance.jsx │ │ ├── AttendanceActivityFeed.jsx │ │ ├── AttendanceEvent.jsx │ │ ├── AttendanceImport.jsx │ │ ├── AttendanceMatch.jsx │ │ ├── Breadcrumbs.jsx │ │ ├── CustomFields.jsx │ │ ├── DateRange.jsx │ │ ├── EmailLink.jsx │ │ ├── Event.jsx │ │ ├── EventActivityFeed.jsx │ │ ├── EventCreate.jsx │ │ ├── Events.jsx │ │ ├── FacebookLink.jsx │ │ ├── FeatureToggle.jsx │ │ ├── FlashMessages.jsx │ │ ├── FormGroup.jsx │ │ ├── GoogleMap.jsx │ │ ├── Group.jsx │ │ ├── GroupResources.jsx │ │ ├── Groups.jsx │ │ ├── Header.jsx │ │ ├── Input.jsx │ │ ├── Member.jsx │ │ ├── Members.jsx │ │ ├── MembersTable.jsx │ │ ├── Nav.jsx │ │ ├── NavItem.jsx │ │ ├── Notes.jsx │ │ ├── Pagination.jsx │ │ ├── PersonActivityFeed.jsx │ │ ├── RemoteAttendance.jsx │ │ ├── RemoteEvent.jsx │ │ ├── RemoteEventMatch.jsx │ │ ├── RemoteEventMatches.jsx │ │ ├── RemoteEventSearch.jsx │ │ ├── SearchFilter.jsx │ │ ├── SortableHeader.jsx │ │ ├── Spinner.jsx │ │ ├── SyncActivityFeed.jsx │ │ ├── Tags.jsx │ │ ├── TextEditor.jsx │ │ ├── UpcomingEvent.jsx │ │ └── UserAuth.jsx │ │ ├── containers │ │ ├── AttendanceForm.jsx │ │ ├── AttendanceImport.jsx │ │ ├── AttendanceMatching.jsx │ │ ├── Attendances.jsx │ │ ├── Dashboard.jsx │ │ ├── EventDetail.jsx │ │ ├── EventImport.jsx │ │ ├── Events.jsx │ │ ├── GroupDetail.jsx │ │ ├── Groups.jsx │ │ ├── MemberDetail.jsx │ │ ├── Members.jsx │ │ ├── Profile.jsx │ │ └── RemoteEventMatch.jsx │ │ ├── history.jsx │ │ ├── reducers │ │ ├── AffiliatesReducer.jsx │ │ ├── AlertsReducer.jsx │ │ ├── AttendanceFormReducer.jsx │ │ ├── AttendancesReducer.jsx │ │ ├── EventReducer.jsx │ │ ├── EventsReducer.jsx │ │ ├── GroupReducer.jsx │ │ ├── GroupsReducer.jsx │ │ ├── MemberReducer.jsx │ │ ├── MembershipsReducer.jsx │ │ ├── ProfileReducer.jsx │ │ ├── StaticFeatureTogglesReducer.js │ │ └── index.jsx │ │ ├── routes │ │ └── routes.jsx │ │ ├── startup │ │ └── registration.jsx │ │ └── utils │ │ ├── Client.jsx │ │ ├── DateTimeUtils.jsx │ │ ├── Pathnames.jsx │ │ ├── Permissions.jsx │ │ ├── QueryUtils.jsx │ │ └── index.jsx ├── package-lock.json ├── package.json ├── webpack.config.js └── yarn.lock ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── feature_toggles.yml.example ├── feature_toggles.yml.gpg ├── heroku.yml.gpg ├── initializers │ ├── active_admin.rb │ ├── active_model_serializer.rb │ ├── acts_as_taggable_on.rb │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── cookies_serializer.rb │ ├── devise.rb │ ├── doorkeeper.rb │ ├── filter_parameter_logging.rb │ ├── geokit_config.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── new_framework_defaults.rb │ ├── paper_trail.rb │ ├── react_on_rails.rb │ ├── serializier.rb │ ├── session_store.rb │ ├── wicked_pdf.rb │ └── wrap_parameters.rb ├── locales │ ├── devise.en.yml │ ├── doorkeeper.en.yml │ ├── en.bootstrap.yml │ └── en.yml ├── networks.yml.example ├── networks.yml.gpg ├── newrelic.yml ├── puma.rb ├── routes.rb ├── secrets.yml ├── spring.rb └── whacamole.rb ├── db ├── migrate │ ├── 20161219033005_create_people.rb │ ├── 20161219043358_create_addresses.rb │ ├── 20161219043422_create_email_addresses.rb │ ├── 20161219043428_create_phone_numbers.rb │ ├── 20161221233347_create_ticket_levels.rb │ ├── 20161221233355_create_attendances.rb │ ├── 20161221233402_create_referrer_data.rb │ ├── 20161221233408_create_tickets.rb │ ├── 20161221233556_create_advocacy_campaigns.rb │ ├── 20161221235441_create_fundraising_pages.rb │ ├── 20161221235444_create_donations.rb │ ├── 20161221235448_create_recipients.rb │ ├── 20161222073953_create_profiles.rb │ ├── 20161222074101_create_canvasses.rb │ ├── 20161222074221_create_canvassing_efforts.rb │ ├── 20161222074319_create_payments.rb │ ├── 20161222074338_create_outreaches.rb │ ├── 20161222074347_create_targets.rb │ ├── 20161222074439_create_petitions.rb │ ├── 20161222074516_create_signatures.rb │ ├── 20161222074522_create_responses.rb │ ├── 20161222074539_create_questions.rb │ ├── 20161222074549_create_answers.rb │ ├── 20161222074627_create_scripts.rb │ ├── 20161222074638_create_script_questions.rb │ ├── 20161222074645_create_share_pages.rb │ ├── 20161222074656_create_facebook_shares.rb │ ├── 20161222074657_create_twitter_shares.rb │ ├── 20161222074659_create_email_shares.rb │ ├── 20161222215258_create_events.rb │ ├── 20161222215305_create_reminders.rb │ ├── 20161227024232_create_submissions.rb │ ├── 20161227024237_create_forms.rb │ ├── 20170101020252_create_queries.rb │ ├── 20170104023611_create_groups.rb │ ├── 20170104032728_create_memberships.rb │ ├── 20170104060654_add_devise_to_people.rb │ ├── 20170124002016_create_active_admin_comments.rb │ ├── 20170125195323_create_zipcodes.rb │ ├── 20170204160804_devise_create_api_users.rb │ ├── 20170204191251_fix_person_honorfic_suffix_spelling.rb │ ├── 20170204193954_add_address_langauge.rb │ ├── 20170227013121_add_missing_event_columns.rb │ ├── 20170228025254_rename_event_type.rb │ ├── 20170228031144_add_identifiers.rb │ ├── 20170305221122_add_attendances_identifiers.rb │ ├── 20170306025717_allow_null_people_email.rb │ ├── 20170312232807_add_email_address_index.rb │ ├── 20170420174923_add_an_api_key_to_groups.rb │ ├── 20170424220747_add_synced_at_to_groups.rb │ ├── 20170503191123_change_memberships_role_type_to_integer.rb │ ├── 20170504155342_remove_email_from_person.rb │ ├── 20170509230710_add_admin_to_user.rb │ ├── 20170511195627_create_doorkeeper_tables.rb │ ├── 20170516052527_add_omniauth_to_users.rb │ ├── 20170516161832_drop_api_user.rb │ ├── 20170519134025_create_identities.rb │ ├── 20170519134317_remove_provider_and_uid_from_people.rb │ ├── 20170519194206_add_access_token_to_identities.rb │ ├── 20170523144033_add_syenced_to_people.rb │ ├── 20170523144045_add_syenced_to_attendances.rb │ ├── 20170524141505_add_unique_index_to_emails.rb │ ├── 20170524141532_add_unique_index_to_memberships.rb │ ├── 20170524185701_remove_foreign_key_donations_attendances.rb │ ├── 20170529140001_create_remote_events.rb │ ├── 20170531171246_add_default_status_to_events.rb │ ├── 20170531181906_add_unique_index_to_groups.rb │ ├── 20170531202932_create_origins.rb │ ├── 20170531203724_create_attendance_origins.rb │ ├── 20170601205445_add_address_to_groups.rb │ ├── 20170601210708_acts_as_taggable_on_migration.acts_as_taggable_on_engine.rb │ ├── 20170601210709_add_missing_unique_indices.acts_as_taggable_on_engine.rb │ ├── 20170601210710_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb │ ├── 20170601210711_add_missing_taggable_index.acts_as_taggable_on_engine.rb │ ├── 20170601210712_change_collation_for_tag_names.acts_as_taggable_on_engine.rb │ ├── 20170601210713_add_missing_indexes.acts_as_taggable_on_engine.rb │ ├── 20170603060727_attendance_tracking.rb │ ├── 20170606181147_change_groups_description_type_to_text.rb │ ├── 20170607160151_create_affiliations.rb │ ├── 20170609184642_create_tag_origins.rb │ ├── 20170613183620_create_notes.rb │ ├── 20170621184631_create_versions.rb │ ├── 20170622195706_add_object_changes_to_versions.rb │ ├── 20170623184222_create_sync_logs.rb │ ├── 20170623203342_remove_syned_resource_from_sync_logs.rb │ ├── 20171205142709_add_identifiers_to_remote_event.rb │ ├── 20180124231119_create_group_signup_forms.rb │ ├── 20180125225154_add_titles_to_group_signup_forms.rb │ ├── 20180129211013_add_form_ref_to_group_signup_forms.rb │ ├── 20180130232141_move_submit_text_to_forms.rb │ ├── 20180131182107_create_form_input_groups.rb │ ├── 20180320172047_create_network.rb │ ├── 20180320182830_create_network_memberships.rb │ ├── 20180321021928_add_indexes_to_network_memberships.rb │ ├── 20180325232119_update_networks_add_swing_left.rb │ ├── 20180329205502_update_networks_add_national_network.rb │ ├── 20180411003356_create_google_groups.rb │ └── 20180605190757_create_feature_toggles.rb ├── schema.rb └── seeds.rb ├── docker-compose.yml ├── docs ├── facebook-oauth-setup.md ├── feature-toggles.md ├── google-group-setup.md └── google-oauth-setup.md ├── generator_notes.md ├── jekyll ├── .sass-cache │ ├── 629b9703be51ff1a233be3a8d5dd46ab1f5b24c1 │ │ └── minima.scssc │ └── 76707a9ea96fc6cb4de67929f2fb521abeb46b11 │ │ ├── _base.scssc │ │ ├── _layout.scssc │ │ └── _syntax-highlighting.scssc ├── Gemfile ├── Gemfile.lock ├── README.md ├── _config.yml ├── _includes │ ├── nav.html │ └── sidebar.html ├── _layouts │ ├── bigheader.html │ ├── default.html │ ├── default_linear.html │ ├── post.html │ └── post_linear.html ├── _posts │ ├── 2017-01-25-update1.md │ ├── 2017-02-12-update2.md │ └── 2017-04-03-update3.md ├── _site │ ├── README.md │ ├── about.html │ ├── assets │ │ ├── css │ │ │ ├── base.css │ │ │ ├── css │ │ │ ├── font │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ └── fontawesome-webfont.woff │ │ │ └── images │ │ │ │ ├── mobileUI-site-nav-opener-bg.svg │ │ │ │ └── toggle.svg │ │ ├── images │ │ │ ├── 32329703291_7df32119e1_b.jpg │ │ │ ├── affinity.svg │ │ │ ├── flag.svg │ │ │ ├── people.svg │ │ │ ├── person.svg │ │ │ ├── saturn.svg │ │ │ └── screenshots.jpg │ │ ├── js │ │ │ ├── html5shiv.js │ │ │ ├── init (BirbMachine's conflicted copy 2014-10-05).js │ │ │ ├── init.js │ │ │ ├── skel-panels.min.js │ │ │ └── skel.min.js │ │ └── main.css │ ├── blog │ │ └── index.html │ ├── contact.html │ ├── feed.xml │ ├── index.html │ ├── joinbeta.html │ └── updates │ │ └── 2017 │ │ ├── 01 │ │ └── 25 │ │ │ └── update1.html │ │ ├── 02 │ │ └── 12 │ │ │ └── update2.html │ │ └── 04 │ │ └── 03 │ │ └── update3.html ├── about.md ├── assets │ ├── css │ │ ├── base.css │ │ ├── css │ │ ├── font │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ └── images │ │ │ ├── mobileUI-site-nav-opener-bg.svg │ │ │ └── toggle.svg │ ├── images │ │ ├── 32329703291_7df32119e1_b.jpg │ │ ├── affinity.svg │ │ ├── flag.svg │ │ ├── people.svg │ │ ├── person.svg │ │ ├── saturn.svg │ │ └── screenshots.jpg │ └── js │ │ ├── html5shiv.js │ │ ├── init (BirbMachine's conflicted copy 2014-10-05).js │ │ ├── init.js │ │ ├── skel-panels.min.js │ │ └── skel.min.js ├── blog │ └── index.html ├── contact.md ├── index.html └── joinbeta.md ├── keyrings └── live │ ├── .gitattributes │ ├── blackbox-admins.txt │ ├── blackbox-files.txt │ ├── pubring.kbx │ └── trustdb.gpg ├── lib ├── assets │ └── .keep ├── export │ └── heroku │ │ └── .keep ├── facebook │ ├── api_agent.rb │ ├── authorization.rb │ ├── event.rb │ └── event_attendance.rb ├── network_credentials │ ├── 0745bfb6179a1691185d50abd0f4fd85 │ │ └── google_gsuite_key.json.gpg │ ├── 1dc44930d2cea05792388a1178c936fe │ │ └── google_gsuite_key.json.gpg │ ├── 7af65312214cfedd28371a29af1c6f22 │ │ └── google_gsuite_key.json.gpg │ └── f41e993ce75cffa0d02da064b90ddec3 │ │ └── google_gsuite_key.json.example └── tasks │ ├── action_network_syncer.rake │ ├── config.rake │ ├── feature_toggles.rake │ ├── heroku.rake │ ├── import_keys.rake │ ├── memberships_role.rake │ ├── qa.rake │ └── resque.rake ├── package.json ├── project_roadmap.md ├── public ├── 404.html ├── 422.html ├── 500.html ├── README.md ├── about.html ├── assets │ ├── active_admin-2cecfbbc5796efba31a98ee97b31653ecff5a2bcd774fba6162dd65ac62deb2f.css │ ├── active_admin-2cecfbbc5796efba31a98ee97b31653ecff5a2bcd774fba6162dd65ac62deb2f.css.gz │ ├── active_admin-fdb0f5d0a66ca35632f87c12ae5833526f65b882582a68d98897ed10e7f902c3.js │ ├── active_admin-fdb0f5d0a66ca35632f87c12ae5833526f65b882582a68d98897ed10e7f902c3.js.gz │ ├── active_admin │ │ ├── print-093dace10ac358806a1bb15ab95f6af02afdaf69b571e4cc956aa27836270509.css │ │ └── print-093dace10ac358806a1bb15ab95f6af02afdaf69b571e4cc956aa27836270509.css.gz │ ├── application-1491467884d14b282b0aa4bd0eeb2ef15a45092fdd680cbfeb0fd2c292512583.js │ ├── application-1491467884d14b282b0aa4bd0eeb2ef15a45092fdd680cbfeb0fd2c292512583.js.gz │ ├── application-fbea513acd48c3fd7d3a4de5ee121da34ef960d24a381746a69ab8f47b4a4cc4.css │ ├── application-fbea513acd48c3fd7d3a4de5ee121da34ef960d24a381746a69ab8f47b4a4cc4.css.gz │ ├── bootstrap_and_overrides.css-2c51f6c4414f1197930ccc543899fb9c18dc2d0543ed70ad1da76ec68b3b6bd7.less │ ├── css │ │ ├── base.css │ │ ├── css │ │ ├── font │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ └── images │ │ │ ├── mobileUI-site-nav-opener-bg.svg │ │ │ └── toggle.svg │ ├── doorkeeper │ │ ├── admin │ │ │ ├── application-1379fe084f940f83a7ba3446f129d7decae5952e2b313e7aa492a8bc5dd46781.css │ │ │ └── application-1379fe084f940f83a7ba3446f129d7decae5952e2b313e7aa492a8bc5dd46781.css.gz │ │ ├── application-9978641b752837f38727bc4d43bcc418cd96a63cfd1575e2809acbfe25910fea.css │ │ └── application-9978641b752837f38727bc4d43bcc418cd96a63cfd1575e2809acbfe25910fea.css.gz │ ├── images │ │ ├── 32329703291_7df32119e1_b.jpg │ │ ├── affinity.svg │ │ ├── flag.svg │ │ ├── people.svg │ │ ├── person.svg │ │ ├── saturn.svg │ │ └── screenshots.jpg │ ├── js │ │ ├── html5shiv.js │ │ ├── init (BirbMachine's conflicted copy 2014-10-05).js │ │ ├── init.js │ │ ├── skel-panels.min.js │ │ └── skel.min.js │ ├── main.css │ ├── pdf-ab356bb6fc15ab7cb58d2617610293c5131d9f8759c119d9664413351c798d17.css │ └── pdf-ab356bb6fc15ab7cb58d2617610293c5131d9f8759c119d9664413351c798d17.css.gz ├── blog │ └── index.html ├── contact.html ├── favicon.ico ├── feed.xml ├── hal-browser │ ├── MIT-LICENSE.txt │ ├── README.adoc │ ├── browser.html │ ├── js │ │ ├── hal.js │ │ └── hal │ │ │ ├── browser.js │ │ │ ├── http │ │ │ └── client.js │ │ │ ├── resource.js │ │ │ └── views │ │ │ ├── browser.js │ │ │ ├── documentation.js │ │ │ ├── embedded_resource.js │ │ │ ├── embedded_resources.js │ │ │ ├── explorer.js │ │ │ ├── inspector.js │ │ │ ├── links.js │ │ │ ├── location_bar.js │ │ │ ├── navigation.js │ │ │ ├── non_safe_request_dialog.js │ │ │ ├── properties.js │ │ │ ├── query_uri_dialog.js │ │ │ ├── request_headers.js │ │ │ ├── resource.js │ │ │ ├── response.js │ │ │ ├── response_body.js │ │ │ └── response_headers.js │ ├── login.html │ ├── styles.css │ └── vendor │ │ ├── css │ │ ├── bootstrap-responsive.css │ │ └── bootstrap.css │ │ ├── img │ │ ├── ajax-loader.gif │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ │ └── js │ │ ├── URI.min.js │ │ ├── backbone.js │ │ ├── bootstrap.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ ├── underscore.js │ │ └── uritemplates.js ├── images │ ├── 32329703291_7df32119e1_b.jpg │ ├── affinity-logo.svg │ ├── affinity.svg │ ├── email-icon.svg │ ├── facebook-logo.svg │ ├── flag.svg │ ├── google-logo.svg │ ├── people.svg │ ├── person.svg │ ├── saturn.svg │ └── screenshots.jpg ├── index.html ├── joinbeta.html ├── mocks │ ├── Commons_campaigns_1.html │ ├── Commons_campaigns_2.html │ ├── README.md │ ├── admin_groups.html │ ├── admin_user.html │ ├── commons_campaign_1.css │ ├── commons_campaign_1.less │ ├── commons_campaign_2.css │ ├── commons_campaign_2.less │ ├── css │ │ ├── admin.css │ │ └── user.css │ ├── event_manager.html │ ├── group_event.html │ ├── group_page.html │ ├── group_search.html │ ├── group_signup.html │ ├── group_tasks.html │ ├── group_volunteer.html │ ├── img │ │ ├── jane_doe.jpg │ │ ├── logo.png │ │ └── logo_unicorn.png │ ├── index.html │ ├── js │ │ ├── admin.js │ │ ├── data.js │ │ ├── data_orig.js │ │ ├── public.js │ │ └── save_data.js │ ├── tasks.html │ ├── user_tasks.html │ └── vendor │ │ └── swag │ │ ├── .gitignore │ │ ├── Cakefile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ ├── swag.js │ │ └── swag.min.js │ │ ├── package.json │ │ ├── src │ │ ├── swag.coffee │ │ ├── swag.collections.coffee │ │ ├── swag.comparisons.coffee │ │ ├── swag.config.coffee │ │ ├── swag.dates.coffee │ │ ├── swag.html.coffee │ │ ├── swag.inflections.coffee │ │ ├── swag.logging.coffee │ │ ├── swag.math.coffee │ │ ├── swag.miscellaneous.coffee │ │ ├── swag.numbers.coffee │ │ ├── swag.strings.coffee │ │ └── swag.utils.coffee │ │ └── test │ │ ├── collections_test.coffee │ │ ├── comparisons_test.coffee │ │ ├── dates_test.coffee │ │ ├── html_test.coffee │ │ ├── inflections_test.coffee │ │ ├── logging_test.coffee │ │ ├── math_test.coffee │ │ ├── miscellaneous_test.coffee │ │ ├── mocha.opts │ │ ├── numbers_test.coffee │ │ ├── strings_test.coffee │ │ └── templates │ │ └── some_template.coffee ├── plus │ ├── .gitignore │ ├── .well-known │ │ └── acme-challenge │ │ │ ├── OkqT41MPdeed9qVZDkBYlPVWlNwTNtv3mmKhDLrE8Ww │ │ │ ├── XjyxR5J4aCtsGoSAPSIRD-_1pKKCkdBGk1fkhzvo2nc │ │ │ ├── lIl3caXA2J8IDKIq5cPQ0PGeVbESUIvsjdGdbePefvw │ │ │ └── z4dCYPJSIfryKDx850HTDuSsq6N9UPyTt67OCQ8dmro │ ├── LICENSE.txt │ ├── about.html │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ ├── call │ │ ├── .gitignore │ │ ├── app │ │ │ ├── call.js │ │ │ ├── campaign.js │ │ │ ├── campaigns │ │ │ │ ├── AZ.json │ │ │ │ ├── MT.json │ │ │ │ ├── OK.json │ │ │ │ └── WY.json │ │ │ ├── form.js │ │ │ ├── form_mods.js │ │ │ ├── heads.js │ │ │ ├── heads │ │ │ │ ├── devos-300.jpg │ │ │ │ ├── mnuchin-300.jpg │ │ │ │ ├── price-300.jpg │ │ │ │ ├── pruitt-300.jpg │ │ │ │ ├── puzder-300.jpg │ │ │ │ ├── sessions-300.jpg │ │ │ │ └── tillerson-300.jpg │ │ │ ├── jquery.js │ │ │ ├── js-yaml.min.js │ │ │ ├── referrer_controls.js │ │ │ ├── referrers.yaml │ │ │ └── require.js │ │ ├── imgs │ │ │ ├── dems_xsmall.gif │ │ │ └── kos.png │ │ ├── index.html │ │ ├── price-senate │ │ │ ├── app │ │ │ │ ├── load.js │ │ │ │ └── validate.js │ │ │ ├── imgs │ │ │ │ ├── fa-bullhorn.png │ │ │ │ └── logos │ │ │ │ │ ├── DianeRussell.png │ │ │ │ │ ├── WAND.png │ │ │ │ │ ├── dems_xsmall.gif │ │ │ │ │ ├── kos.png │ │ │ │ │ └── www_horiz.jpg │ │ │ ├── index.html │ │ │ ├── lib │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.osdi.js │ │ │ │ └── parsley.js │ │ │ ├── sass │ │ │ │ ├── _body.scss │ │ │ │ ├── _fonts.scss │ │ │ │ ├── _footer.scss │ │ │ │ ├── _form.scss │ │ │ │ ├── _header.scss │ │ │ │ ├── _layout.scss │ │ │ │ ├── _parsley.scss │ │ │ │ └── style.scss │ │ │ └── style │ │ │ │ └── style.css │ │ ├── pruitt-senate │ │ │ ├── app │ │ │ │ ├── load.js │ │ │ │ └── validate.js │ │ │ ├── imgs │ │ │ │ ├── fa-bullhorn.png │ │ │ │ └── logos │ │ │ │ │ ├── DianeRussell.png │ │ │ │ │ ├── WAND.png │ │ │ │ │ ├── dems_xsmall.gif │ │ │ │ │ ├── kos.png │ │ │ │ │ └── www_horiz.jpg │ │ │ ├── index.html │ │ │ ├── lib │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.osdi.js │ │ │ │ └── parsley.js │ │ │ ├── sass │ │ │ │ ├── _body.scss │ │ │ │ ├── _fonts.scss │ │ │ │ ├── _footer.scss │ │ │ │ ├── _form.scss │ │ │ │ ├── _header.scss │ │ │ │ ├── _layout.scss │ │ │ │ ├── _parsley.scss │ │ │ │ └── style.scss │ │ │ └── style │ │ │ │ └── style.css │ │ ├── sass │ │ │ ├── _an-embed-whitelabel.scss │ │ │ ├── _body.scss │ │ │ ├── _form.scss │ │ │ ├── _header.scss │ │ │ └── style.scss │ │ ├── style │ │ │ ├── dems_menu_bg.png │ │ │ └── style.css │ │ ├── tillerson-dems │ │ │ ├── app │ │ │ │ ├── call.js │ │ │ │ ├── campaign.js │ │ │ │ ├── campaigns │ │ │ │ │ ├── AZ.json │ │ │ │ │ ├── MT.json │ │ │ │ │ ├── OK.json │ │ │ │ │ └── WY.json │ │ │ │ ├── form.js │ │ │ │ ├── form_mods.js │ │ │ │ ├── heads.js │ │ │ │ ├── heads │ │ │ │ │ ├── devos-300.jpg │ │ │ │ │ ├── mnuchin-300.jpg │ │ │ │ │ ├── price-300.jpg │ │ │ │ │ ├── pruitt-300.jpg │ │ │ │ │ ├── puzder-300.jpg │ │ │ │ │ ├── sessions-300.jpg │ │ │ │ │ └── tillerson-300.jpg │ │ │ │ ├── jquery.js │ │ │ │ ├── js-yaml.min.js │ │ │ │ ├── ref_passthrough.js │ │ │ │ ├── referrer_controls.js │ │ │ │ ├── referrers.yaml │ │ │ │ └── require.js │ │ │ ├── imgs │ │ │ │ ├── dems_xsmall.gif │ │ │ │ └── kos.png │ │ │ ├── index.html │ │ │ ├── main.js │ │ │ ├── sass │ │ │ │ ├── _an-embed-whitelabel.scss │ │ │ │ ├── _body.scss │ │ │ │ ├── _form.scss │ │ │ │ ├── _header.scss │ │ │ │ └── style.scss │ │ │ └── style │ │ │ │ ├── dems_menu_bg.png │ │ │ │ └── style.css │ │ ├── tillerson-senate │ │ │ ├── app │ │ │ │ ├── load.js │ │ │ │ └── validate.js │ │ │ ├── imgs │ │ │ │ ├── fa-bullhorn.png │ │ │ │ └── logos │ │ │ │ │ ├── DianeRussell.png │ │ │ │ │ ├── WAND.png │ │ │ │ │ ├── ccan.gif │ │ │ │ │ ├── dems_xsmall.gif │ │ │ │ │ ├── kos.png │ │ │ │ │ └── www_horiz.jpg │ │ │ ├── index.html │ │ │ ├── lib │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.osdi.js │ │ │ │ └── parsley.js │ │ │ ├── sass │ │ │ │ ├── _body.scss │ │ │ │ ├── _fonts.scss │ │ │ │ ├── _footer.scss │ │ │ │ ├── _form.scss │ │ │ │ ├── _header.scss │ │ │ │ ├── _layout.scss │ │ │ │ ├── _parsley.scss │ │ │ │ └── style.scss │ │ │ └── style │ │ │ │ └── style.css │ │ └── tillerson-sessions │ │ │ ├── app │ │ │ ├── load.js │ │ │ └── validate.js │ │ │ ├── imgs │ │ │ ├── fa-bullhorn.png │ │ │ └── logos │ │ │ │ ├── DianeRussell.png │ │ │ │ └── WAND.png │ │ │ ├── index.html │ │ │ ├── lib │ │ │ ├── jquery.js │ │ │ ├── jquery.osdi.js │ │ │ └── parsley.js │ │ │ ├── sass │ │ │ ├── _body.scss │ │ │ ├── _fonts.scss │ │ │ ├── _footer.scss │ │ │ ├── _form.scss │ │ │ ├── _header.scss │ │ │ ├── _layout.scss │ │ │ ├── _parsley.scss │ │ │ └── style.scss │ │ │ └── style │ │ │ └── style.css │ ├── democrats │ │ ├── .gitignore │ │ ├── act │ │ │ ├── index.html │ │ │ └── main.js │ │ ├── app │ │ │ ├── call.js │ │ │ ├── campaign.js │ │ │ ├── campaigns │ │ │ │ ├── AZ.json │ │ │ │ ├── MT.json │ │ │ │ ├── OK.json │ │ │ │ └── WY.json │ │ │ ├── form.js │ │ │ ├── form_mods.js │ │ │ ├── heads.js │ │ │ ├── heads │ │ │ │ ├── devos-300.jpg │ │ │ │ ├── mnuchin-300.jpg │ │ │ │ ├── price-300.jpg │ │ │ │ ├── pruitt-300.jpg │ │ │ │ ├── puzder-300.jpg │ │ │ │ ├── sessions-300.jpg │ │ │ │ └── tillerson-300.jpg │ │ │ ├── jquery.js │ │ │ ├── js-yaml.min.js │ │ │ ├── main.js │ │ │ ├── referrer_controls.js │ │ │ ├── referrers.yaml │ │ │ └── require.js │ │ ├── index.html │ │ ├── roadmap.txt │ │ ├── sass │ │ │ ├── an-embed-whitelabel.scss │ │ │ ├── body.scss │ │ │ ├── form.scss │ │ │ └── header.scss │ │ ├── signup │ │ │ ├── index.html │ │ │ └── main.js │ │ └── style │ │ │ ├── an-embed-whitelabel.css │ │ │ ├── an-embed-whitelabel.css.map │ │ │ ├── body.css │ │ │ ├── body.css.map │ │ │ ├── dems_menu_bg.png │ │ │ ├── form.css │ │ │ ├── form.css.map │ │ │ ├── header.css │ │ │ └── header.css.map │ ├── favicon.ico │ ├── img │ │ ├── IndivisibleGuide_AbePic.png │ │ ├── bgnoise.png │ │ └── blue_wavy_logo.jpg │ ├── indivisibleform │ │ ├── form-simple.html │ │ ├── form.html │ │ ├── index.html │ │ ├── js │ │ │ ├── formfixer.js │ │ │ ├── jquery.osdi.js │ │ │ └── parsley.js │ │ ├── parsley1.html │ │ └── style │ │ │ ├── body.css │ │ │ ├── dems_menu_bg.png │ │ │ ├── form.css │ │ │ ├── header.css │ │ │ ├── parsley.css │ │ │ └── whitelabel.css │ ├── main.html │ ├── robots.txt │ ├── signup │ │ ├── app │ │ │ ├── form.js │ │ │ ├── form_mods.js │ │ │ ├── heads.js │ │ │ ├── heads │ │ │ │ ├── devos-300.jpg │ │ │ │ ├── mnuchin-300.jpg │ │ │ │ ├── price-300.jpg │ │ │ │ ├── pruitt-300.jpg │ │ │ │ ├── puzder-300.jpg │ │ │ │ ├── sessions-300.jpg │ │ │ │ └── tillerson-300.jpg │ │ │ └── jquery.js │ │ ├── index.html │ │ ├── sass │ │ │ ├── _an-embed-whitelabel.scss │ │ │ ├── _body.scss │ │ │ ├── _form.scss │ │ │ ├── _header.scss │ │ │ └── style.scss │ │ └── style │ │ │ ├── dems_menu_bg.png │ │ │ ├── style.css │ │ │ └── style.css.map │ ├── site.js │ ├── stylesheets │ │ └── base.css │ └── testpage.html ├── privacy.html └── updates │ └── 2017 │ ├── 01 │ └── 25 │ │ └── update1.html │ ├── 02 │ └── 12 │ │ └── update2.html │ └── 04 │ └── 03 │ └── update3.html ├── test ├── .rubocop.yml ├── controllers │ ├── .keep │ ├── admin │ │ └── sessions_controller_test.rb │ ├── affiliates_controller_test.rb │ ├── api │ │ └── v1 │ │ │ ├── attendances_controller_test.rb │ │ │ ├── entry_point_controller_test.rb │ │ │ └── people_controller_test.rb │ ├── attendances_controller_test.rb │ ├── events_controllers_test.rb │ ├── groups_controller_test.rb │ ├── imports_controller_test.rb │ ├── join_controller_test.rb │ ├── members_controller_test.rb │ ├── memberships_controller_test.rb │ ├── notes_controller.rb │ ├── people │ │ └── omniauth_callbacks_controller_test.rb │ ├── profile_controller_test.rb │ ├── static_feature_toggles_controller_test.rb │ ├── subgroups_controller_test.rb │ ├── tags_controller_test.rb │ └── zipcodes_controller_test.rb ├── factories │ ├── email_address.rb │ ├── feature_toggles.rb │ ├── group.rb │ ├── membership.rb │ ├── person.rb │ ├── personal_address.rb │ ├── phone_number.rb │ └── tag.rb ├── feature │ ├── add_edit_member_test.rb │ ├── create_group_test.rb │ ├── dashboard_test.rb │ ├── homepage_test.rb │ ├── join_group_test.rb │ └── login_test.rb ├── fixtures │ ├── .keep │ ├── addresses.yml │ ├── advocacy_campaigns.yml │ ├── advocacy_campaigns_groups.yml │ ├── affiliations.yml │ ├── answers.yml │ ├── attendances.yml │ ├── canvasses.yml │ ├── canvassing_efforts.yml │ ├── canvassing_efforts_groups.yml │ ├── canvassing_efforts_questions.yml │ ├── custom_forms.yml │ ├── donations.yml │ ├── email_addresses.yml │ ├── email_shares.yml │ ├── events.yml │ ├── events_groups.yml │ ├── facebook_shares.yml │ ├── files │ │ ├── .keep │ │ ├── attendances.json │ │ ├── attendances │ │ │ ├── no_attendance.json │ │ │ ├── original_attendance.json │ │ │ └── yes_attendance.json │ │ ├── events.json │ │ ├── events │ │ │ ├── att_event.json │ │ │ └── no_att_event.json │ │ ├── events2.json │ │ ├── events_page_2.json │ │ ├── people.json │ │ ├── people_page_2.json │ │ ├── person.json │ │ ├── person2.json │ │ ├── person_evan.json │ │ ├── person_robert.json │ │ ├── service_account.json │ │ ├── taggings.json │ │ ├── tags.json │ │ └── the_avengers_google_gsuite_key.json │ ├── form_input_groups.yml │ ├── forms.yml │ ├── forms_groups.yml │ ├── fundraising_pages.yml │ ├── google_groups.yml │ ├── groups.yml │ ├── groups_petitions.yml │ ├── groups_share_pages.yml │ ├── identities.yml │ ├── memberships.yml │ ├── network_memberships.yml │ ├── networks.yml │ ├── origins.yml │ ├── outreaches.yml │ ├── outreaches_targets.yml │ ├── payments.yml │ ├── people.yml │ ├── petitions.yml │ ├── petitions_signatures.yml │ ├── petitions_targets.yml │ ├── phone_numbers.yml │ ├── profiles.yml │ ├── queries.yml │ ├── questions.yml │ ├── recipients.yml │ ├── referrer_data.yml │ ├── reminders.yml │ ├── remote_events.yml │ ├── responses.yml │ ├── script_questions.yml │ ├── scripts.yml │ ├── share_pages.yml │ ├── signatures.yml │ ├── signup_forms.yml │ ├── submissions.yml │ ├── tag_origins.yml │ ├── tags.yml │ ├── targets.yml │ ├── ticket_levels.yml │ ├── tickets.yml │ ├── twitter_shares.yml │ └── zipcodes.yml ├── functionals │ └── application_controller_test.rb ├── helpers │ ├── .keep │ ├── attendances_helper_test.rb │ ├── feature_test_helper.rb │ └── oauth_fixtures.rb ├── integration │ ├── .keep │ ├── authentication_test.rb │ └── static_feature_toggles_test.rb ├── jobs │ └── action_network_request_job_test.rb ├── lib │ └── facebook │ │ └── event_test.rb ├── mailers │ ├── .keep │ └── group_mailer_test.rb ├── models │ ├── .keep │ ├── ability_test.rb │ ├── address_input_group_test.rb │ ├── address_test.rb │ ├── advocacy_campaign_test.rb │ ├── affilition_test.rb │ ├── answer_test.rb │ ├── api │ │ └── action_network │ │ │ ├── attendances_test.rb │ │ │ ├── events_test.rb │ │ │ ├── people_test.rb │ │ │ ├── person_test.rb │ │ │ ├── taggings_test.rb │ │ │ └── tags_test.rb │ ├── attendance_event_test.rb │ ├── attendance_test.rb │ ├── canvass_test.rb │ ├── canvassing_effort_test.rb │ ├── concerns │ │ ├── bulk_import_test.rb │ │ ├── can_signup_test.rb │ │ ├── has_feature_toggles_test.rb │ │ └── networkable_test.rb │ ├── custom_form_test.rb │ ├── donation_test.rb │ ├── email_address_test.rb │ ├── email_input_group_test.rb │ ├── email_share_test.rb │ ├── event_test.rb │ ├── facebook_share_test.rb │ ├── feature_toggle_test.rb │ ├── form_input_group_test.rb │ ├── form_test.rb │ ├── fundraising_page_test.rb │ ├── google_group_test.rb │ ├── group_test.rb │ ├── identity_test.rb │ ├── membership_test.rb │ ├── network_membership_test.rb │ ├── network_test.rb │ ├── no_attendance_event_test.rb │ ├── outreach_test.rb │ ├── payment_test.rb │ ├── person_input_group_test.rb │ ├── person_test.rb │ ├── petition_test.rb │ ├── phone_input_group_test.rb │ ├── phone_number_test.rb │ ├── profile_test.rb │ ├── query_test.rb │ ├── question_test.rb │ ├── recipient_test.rb │ ├── referrer_data_test.rb │ ├── reminder_test.rb │ ├── remote_event_test.rb │ ├── response_test.rb │ ├── script_question_test.rb │ ├── script_test.rb │ ├── share_page_test.rb │ ├── signature_test.rb │ ├── signup_form_test.rb │ ├── submission_test.rb │ ├── tag_test.rb │ ├── target_test.rb │ ├── ticket_level_test.rb │ ├── ticket_test.rb │ ├── twitter_share_test.rb │ └── zipcode_test.rb ├── representers │ ├── api │ │ ├── action_network │ │ │ ├── attendance_representer_test.rb │ │ │ ├── attendances_representer_test.rb │ │ │ ├── events_representer_test.rb │ │ │ └── people_representer_test.rb │ │ ├── entry_point_representer_test.rb │ │ └── resources │ │ │ ├── address_representer_test.rb │ │ │ ├── attendance_representer_test.rb │ │ │ ├── birthdate_representer_test.rb │ │ │ ├── email_address_representer_test.rb │ │ │ ├── event_representer_test.rb │ │ │ └── person_representer_test.rb │ └── json_api │ │ ├── events_representer_test.rb │ │ └── person_representer_test.rb ├── routes │ ├── membership_routes_test.rb │ └── signup_routes_test.rb ├── services │ ├── aggregate_error_test.rb │ ├── crypto_test.rb │ ├── google_api │ │ ├── add_member_to_google_group_test.rb │ │ ├── create_google_group_test.rb │ │ ├── fetch_google_group_test.rb │ │ ├── get_authorization_test.rb │ │ ├── service_test.rb │ │ └── update_google_group_settings_test.rb │ ├── members │ │ └── after_create_test.rb │ ├── migration_test.rb │ ├── static_feature_toggle_test.rb │ └── subgroups │ │ └── after_create_test.rb └── test_helper.rb ├── vendor └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep ├── yarn.lock └── zipcode_import.rb /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.env.development.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/.env.development.gpg -------------------------------------------------------------------------------- /.env.heroku/affinityworks.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/.env.heroku/affinityworks.gpg -------------------------------------------------------------------------------- /.env.heroku/dev-affinityworks.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/.env.heroku/dev-affinityworks.gpg -------------------------------------------------------------------------------- /.env.heroku/staging-affinityworks.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/.env.heroku/staging-affinityworks.gpg -------------------------------------------------------------------------------- /.env.test.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/.env.test.gpg -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 6.9.0 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.3.3 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/.travis.yml -------------------------------------------------------------------------------- /Aptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/Aptfile -------------------------------------------------------------------------------- /Aptfile_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/Aptfile_README.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/Procfile -------------------------------------------------------------------------------- /Procfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/Procfile.dev -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/Rakefile -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app.json -------------------------------------------------------------------------------- /app/admin/address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/admin/address.rb -------------------------------------------------------------------------------- /app/admin/answer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/admin/answer.rb -------------------------------------------------------------------------------- /app/admin/canvassing_effort.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/admin/canvassing_effort.rb -------------------------------------------------------------------------------- /app/admin/dashboard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/admin/dashboard.rb -------------------------------------------------------------------------------- /app/admin/donation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/admin/donation.rb -------------------------------------------------------------------------------- /app/admin/email_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/admin/email_address.rb -------------------------------------------------------------------------------- /app/admin/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/admin/event.rb -------------------------------------------------------------------------------- /app/admin/facebook_share.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/admin/facebook_share.rb -------------------------------------------------------------------------------- /app/admin/form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/admin/form.rb -------------------------------------------------------------------------------- /app/admin/fundraising_page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/admin/fundraising_page.rb -------------------------------------------------------------------------------- /app/admin/group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/admin/group.rb -------------------------------------------------------------------------------- /app/admin/oauth_application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/admin/oauth_application.rb -------------------------------------------------------------------------------- /app/admin/outreach.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/admin/outreach.rb -------------------------------------------------------------------------------- /app/admin/person.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/admin/person.rb -------------------------------------------------------------------------------- /app/admin/petition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/admin/petition.rb -------------------------------------------------------------------------------- /app/admin/phone_number.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/admin/phone_number.rb -------------------------------------------------------------------------------- /app/admin/profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/admin/profile.rb -------------------------------------------------------------------------------- /app/admin/query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/admin/query.rb -------------------------------------------------------------------------------- /app/admin/query_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/admin/query_set.rb -------------------------------------------------------------------------------- /app/admin/question.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/admin/question.rb -------------------------------------------------------------------------------- /app/admin/recipient.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/admin/recipient.rb -------------------------------------------------------------------------------- /app/admin/referrer_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/admin/referrer_data.rb -------------------------------------------------------------------------------- /app/admin/reminder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/admin/reminder.rb -------------------------------------------------------------------------------- /app/admin/response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/admin/response.rb -------------------------------------------------------------------------------- /app/admin/script_question.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/admin/script_question.rb -------------------------------------------------------------------------------- /app/admin/share_page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/admin/share_page.rb -------------------------------------------------------------------------------- /app/admin/signature.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/admin/signature.rb -------------------------------------------------------------------------------- /app/admin/submission.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/admin/submission.rb -------------------------------------------------------------------------------- /app/admin/target.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/admin/target.rb -------------------------------------------------------------------------------- /app/admin/ticket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/admin/ticket.rb -------------------------------------------------------------------------------- /app/admin/ticket_level.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/admin/ticket_level.rb -------------------------------------------------------------------------------- /app/admin/twitter_share.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/admin/twitter_share.rb -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/active_admin.js.coffee: -------------------------------------------------------------------------------- 1 | #= require active_admin/base 2 | -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/bootstrap.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/assets/javascripts/bootstrap.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/cable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/assets/javascripts/cable.js -------------------------------------------------------------------------------- /app/assets/javascripts/channels/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/groups.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/assets/javascripts/groups.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/mask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/assets/javascripts/mask.js -------------------------------------------------------------------------------- /app/assets/javascripts/members.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/assets/javascripts/members.js -------------------------------------------------------------------------------- /app/assets/javascripts/profile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/assets/javascripts/profile.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/zipcodes.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/assets/javascripts/zipcodes.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/active_admin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/assets/stylesheets/active_admin.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/assets/stylesheets/buttons.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/join_group_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/assets/stylesheets/join_group_page.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/login_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/assets/stylesheets/login_page.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/member_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/assets/stylesheets/member_form.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/member_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/assets/stylesheets/member_page.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pdf.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/assets/stylesheets/pdf.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/profile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/assets/stylesheets/profile.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/scaffolds.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/assets/stylesheets/scaffolds.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/signup_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/assets/stylesheets/signup_form.scss -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/controllers/affiliates_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/controllers/affiliates_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/people_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/controllers/api/v1/people_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/attendances_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/controllers/attendances_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/concerns/signup_handlers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/controllers/concerns/signup_handlers.rb -------------------------------------------------------------------------------- /app/controllers/dashboard_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/controllers/dashboard_controller.rb -------------------------------------------------------------------------------- /app/controllers/events_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/controllers/events_controller.rb -------------------------------------------------------------------------------- /app/controllers/groups_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/controllers/groups_controller.rb -------------------------------------------------------------------------------- /app/controllers/imports_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/controllers/imports_controller.rb -------------------------------------------------------------------------------- /app/controllers/join.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/controllers/join.rb -------------------------------------------------------------------------------- /app/controllers/members_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/controllers/members_controller.rb -------------------------------------------------------------------------------- /app/controllers/memberships_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/controllers/memberships_controller.rb -------------------------------------------------------------------------------- /app/controllers/notes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/controllers/notes_controller.rb -------------------------------------------------------------------------------- /app/controllers/profile_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/controllers/profile_controller.rb -------------------------------------------------------------------------------- /app/controllers/queries_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/controllers/queries_controller.rb -------------------------------------------------------------------------------- /app/controllers/shas_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/controllers/shas_controller.rb -------------------------------------------------------------------------------- /app/controllers/subgroups_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/controllers/subgroups_controller.rb -------------------------------------------------------------------------------- /app/controllers/tags_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/controllers/tags_controller.rb -------------------------------------------------------------------------------- /app/controllers/wellknown_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/controllers/wellknown_controller.rb -------------------------------------------------------------------------------- /app/controllers/zipcodes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/controllers/zipcodes_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/attendances_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/helpers/attendances_helper.rb -------------------------------------------------------------------------------- /app/helpers/devise_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/helpers/devise_helper.rb -------------------------------------------------------------------------------- /app/helpers/groups_helper.rb: -------------------------------------------------------------------------------- 1 | module GroupsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/people_helper.rb: -------------------------------------------------------------------------------- 1 | module PeopleHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/subdomain_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/helpers/subdomain_helper.rb -------------------------------------------------------------------------------- /app/helpers/zipcodes_helper.rb: -------------------------------------------------------------------------------- 1 | module ZipcodesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/jobs/google_group_jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/jobs/google_group_jobs.rb -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/mailers/group_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/mailers/group_mailer.rb -------------------------------------------------------------------------------- /app/models/ability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/ability.rb -------------------------------------------------------------------------------- /app/models/address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/address.rb -------------------------------------------------------------------------------- /app/models/address_input_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/address_input_group.rb -------------------------------------------------------------------------------- /app/models/advocacy_campaign.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/advocacy_campaign.rb -------------------------------------------------------------------------------- /app/models/affiliation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/affiliation.rb -------------------------------------------------------------------------------- /app/models/answer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/answer.rb -------------------------------------------------------------------------------- /app/models/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/api.rb -------------------------------------------------------------------------------- /app/models/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/api/README.md -------------------------------------------------------------------------------- /app/models/api/action_network/attendance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/api/action_network/attendance.rb -------------------------------------------------------------------------------- /app/models/api/action_network/attendances.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/api/action_network/attendances.rb -------------------------------------------------------------------------------- /app/models/api/action_network/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/api/action_network/event.rb -------------------------------------------------------------------------------- /app/models/api/action_network/events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/api/action_network/events.rb -------------------------------------------------------------------------------- /app/models/api/action_network/export.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/api/action_network/export.rb -------------------------------------------------------------------------------- /app/models/api/action_network/import.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/api/action_network/import.rb -------------------------------------------------------------------------------- /app/models/api/action_network/people.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/api/action_network/people.rb -------------------------------------------------------------------------------- /app/models/api/action_network/person.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/api/action_network/person.rb -------------------------------------------------------------------------------- /app/models/api/action_network/taggings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/api/action_network/taggings.rb -------------------------------------------------------------------------------- /app/models/api/action_network/tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/api/action_network/tags.rb -------------------------------------------------------------------------------- /app/models/api/collections/attendances.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/api/collections/attendances.rb -------------------------------------------------------------------------------- /app/models/api/collections/collection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/api/collections/collection.rb -------------------------------------------------------------------------------- /app/models/api/collections/events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/api/collections/events.rb -------------------------------------------------------------------------------- /app/models/api/collections/people.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/api/collections/people.rb -------------------------------------------------------------------------------- /app/models/api/collections/taggings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/api/collections/taggings.rb -------------------------------------------------------------------------------- /app/models/api/collections/tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/api/collections/tags.rb -------------------------------------------------------------------------------- /app/models/api/entry_point.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/api/entry_point.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/attendance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/attendance.rb -------------------------------------------------------------------------------- /app/models/attendance_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/attendance_event.rb -------------------------------------------------------------------------------- /app/models/attendance_origin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/attendance_origin.rb -------------------------------------------------------------------------------- /app/models/canvass.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/canvass.rb -------------------------------------------------------------------------------- /app/models/canvassing_effort.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/canvassing_effort.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/api/identifiers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/concerns/api/identifiers.rb -------------------------------------------------------------------------------- /app/models/concerns/bulk_import.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/concerns/bulk_import.rb -------------------------------------------------------------------------------- /app/models/concerns/can_signup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/concerns/can_signup.rb -------------------------------------------------------------------------------- /app/models/concerns/has_attendance_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/concerns/has_attendance_event.rb -------------------------------------------------------------------------------- /app/models/concerns/has_feature_toggles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/concerns/has_feature_toggles.rb -------------------------------------------------------------------------------- /app/models/concerns/has_remote_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/concerns/has_remote_event.rb -------------------------------------------------------------------------------- /app/models/concerns/networkable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/concerns/networkable.rb -------------------------------------------------------------------------------- /app/models/concerns/url_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/concerns/url_helpers.rb -------------------------------------------------------------------------------- /app/models/custom_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/custom_form.rb -------------------------------------------------------------------------------- /app/models/donation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/donation.rb -------------------------------------------------------------------------------- /app/models/email_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/email_address.rb -------------------------------------------------------------------------------- /app/models/email_input_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/email_input_group.rb -------------------------------------------------------------------------------- /app/models/email_share.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/email_share.rb -------------------------------------------------------------------------------- /app/models/employer_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/employer_address.rb -------------------------------------------------------------------------------- /app/models/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/event.rb -------------------------------------------------------------------------------- /app/models/event_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/event_address.rb -------------------------------------------------------------------------------- /app/models/facebook_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/facebook_event.rb -------------------------------------------------------------------------------- /app/models/facebook_share.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/facebook_share.rb -------------------------------------------------------------------------------- /app/models/feature_toggle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/feature_toggle.rb -------------------------------------------------------------------------------- /app/models/form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/form.rb -------------------------------------------------------------------------------- /app/models/form_input_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/form_input_group.rb -------------------------------------------------------------------------------- /app/models/fundraising_page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/fundraising_page.rb -------------------------------------------------------------------------------- /app/models/google_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/google_group.rb -------------------------------------------------------------------------------- /app/models/group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/group.rb -------------------------------------------------------------------------------- /app/models/group_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/group_address.rb -------------------------------------------------------------------------------- /app/models/identity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/identity.rb -------------------------------------------------------------------------------- /app/models/membership.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/membership.rb -------------------------------------------------------------------------------- /app/models/network.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/network.rb -------------------------------------------------------------------------------- /app/models/network_membership.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/network_membership.rb -------------------------------------------------------------------------------- /app/models/no_attendance_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/no_attendance_event.rb -------------------------------------------------------------------------------- /app/models/note.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/note.rb -------------------------------------------------------------------------------- /app/models/origin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/origin.rb -------------------------------------------------------------------------------- /app/models/outreach.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/outreach.rb -------------------------------------------------------------------------------- /app/models/payment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/payment.rb -------------------------------------------------------------------------------- /app/models/person.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/person.rb -------------------------------------------------------------------------------- /app/models/person_input_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/person_input_group.rb -------------------------------------------------------------------------------- /app/models/personal_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/personal_address.rb -------------------------------------------------------------------------------- /app/models/petition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/petition.rb -------------------------------------------------------------------------------- /app/models/phone_input_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/phone_input_group.rb -------------------------------------------------------------------------------- /app/models/phone_number.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/phone_number.rb -------------------------------------------------------------------------------- /app/models/profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/profile.rb -------------------------------------------------------------------------------- /app/models/query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/query.rb -------------------------------------------------------------------------------- /app/models/query_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/query_set.rb -------------------------------------------------------------------------------- /app/models/question.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/question.rb -------------------------------------------------------------------------------- /app/models/recipient.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/recipient.rb -------------------------------------------------------------------------------- /app/models/referrer_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/referrer_data.rb -------------------------------------------------------------------------------- /app/models/reminder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/reminder.rb -------------------------------------------------------------------------------- /app/models/remote_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/remote_event.rb -------------------------------------------------------------------------------- /app/models/response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/response.rb -------------------------------------------------------------------------------- /app/models/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/script.rb -------------------------------------------------------------------------------- /app/models/script_question.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/script_question.rb -------------------------------------------------------------------------------- /app/models/share_page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/share_page.rb -------------------------------------------------------------------------------- /app/models/signature.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/signature.rb -------------------------------------------------------------------------------- /app/models/signup_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/signup_form.rb -------------------------------------------------------------------------------- /app/models/submission.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/submission.rb -------------------------------------------------------------------------------- /app/models/sync_log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/sync_log.rb -------------------------------------------------------------------------------- /app/models/tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/tag.rb -------------------------------------------------------------------------------- /app/models/tag_origin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/tag_origin.rb -------------------------------------------------------------------------------- /app/models/tagging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/tagging.rb -------------------------------------------------------------------------------- /app/models/target.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/target.rb -------------------------------------------------------------------------------- /app/models/ticket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/ticket.rb -------------------------------------------------------------------------------- /app/models/ticket_level.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/ticket_level.rb -------------------------------------------------------------------------------- /app/models/twitter_share.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/twitter_share.rb -------------------------------------------------------------------------------- /app/models/zipcode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/models/zipcode.rb -------------------------------------------------------------------------------- /app/presenters/person_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/presenters/person_presenter.rb -------------------------------------------------------------------------------- /app/representers/api/resources/identified.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/representers/api/resources/identified.rb -------------------------------------------------------------------------------- /app/serializers/group_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/serializers/group_serializer.rb -------------------------------------------------------------------------------- /app/services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/services/README.md -------------------------------------------------------------------------------- /app/services/aggregate_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/services/aggregate_error.rb -------------------------------------------------------------------------------- /app/services/crypto.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/services/crypto.rb -------------------------------------------------------------------------------- /app/services/facebook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/services/facebook.rb -------------------------------------------------------------------------------- /app/services/google_api/get_authorization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/services/google_api/get_authorization.rb -------------------------------------------------------------------------------- /app/services/google_api/roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/services/google_api/roles.rb -------------------------------------------------------------------------------- /app/services/google_api/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/services/google_api/service.rb -------------------------------------------------------------------------------- /app/services/members/after_create.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/services/members/after_create.rb -------------------------------------------------------------------------------- /app/services/memberships/after_destroy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/services/memberships/after_destroy.rb -------------------------------------------------------------------------------- /app/services/migration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/services/migration.rb -------------------------------------------------------------------------------- /app/services/oauth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/services/oauth.rb -------------------------------------------------------------------------------- /app/services/static_feature_toggle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/services/static_feature_toggle.rb -------------------------------------------------------------------------------- /app/services/subgroups/after_create.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/services/subgroups/after_create.rb -------------------------------------------------------------------------------- /app/views/affiliates/index.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'application/client' %> 2 | -------------------------------------------------------------------------------- /app/views/application/_client.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/application/_client.html.erb -------------------------------------------------------------------------------- /app/views/attendances/index.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'application/client' %> 2 | -------------------------------------------------------------------------------- /app/views/attendances/index.pdf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/attendances/index.pdf.erb -------------------------------------------------------------------------------- /app/views/attendances/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'application/client' %> 2 | -------------------------------------------------------------------------------- /app/views/attendances/pdf_footer.pdf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/attendances/pdf_footer.pdf.erb -------------------------------------------------------------------------------- /app/views/attendances/pdf_header.pdf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/attendances/pdf_header.pdf.erb -------------------------------------------------------------------------------- /app/views/dashboard/index.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'application/client' %> 2 | -------------------------------------------------------------------------------- /app/views/dashboard/show.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'application/client' %> 2 | -------------------------------------------------------------------------------- /app/views/devise/confirmations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/devise/confirmations/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/devise/passwords/edit.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/devise/passwords/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/devise/registrations/edit.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/devise/registrations/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/devise/sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/shared/_links.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/devise/shared/_links.html.erb -------------------------------------------------------------------------------- /app/views/devise/unlocks/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/devise/unlocks/new.html.erb -------------------------------------------------------------------------------- /app/views/events/index.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'application/client' %> 2 | -------------------------------------------------------------------------------- /app/views/events/index.xlsx.axlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/events/index.xlsx.axlsx -------------------------------------------------------------------------------- /app/views/events/show.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'application/client' %> 2 | -------------------------------------------------------------------------------- /app/views/groups/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/groups/_form.html.erb -------------------------------------------------------------------------------- /app/views/groups/_group.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/groups/_group.json.jbuilder -------------------------------------------------------------------------------- /app/views/groups/_navigation.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/groups/_navigation.html.erb -------------------------------------------------------------------------------- /app/views/groups/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/groups/edit.html.erb -------------------------------------------------------------------------------- /app/views/groups/index.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'application/client' %> 2 | -------------------------------------------------------------------------------- /app/views/groups/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/groups/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/groups/join.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/groups/join.html.erb -------------------------------------------------------------------------------- /app/views/groups/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/groups/new.html.erb -------------------------------------------------------------------------------- /app/views/groups/show.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'application/client' %> 2 | -------------------------------------------------------------------------------- /app/views/groups/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/groups/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/imports/attendances.erb: -------------------------------------------------------------------------------- 1 | <%= render 'application/client' %> 2 | -------------------------------------------------------------------------------- /app/views/imports/find.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'application/client' %> 2 | -------------------------------------------------------------------------------- /app/views/imports/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'application/client' %> 2 | -------------------------------------------------------------------------------- /app/views/imports/new_facebook_attendance.erb: -------------------------------------------------------------------------------- 1 | <%= render 'application/client' %> 2 | -------------------------------------------------------------------------------- /app/views/layouts/_google_analytics.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/layouts/_google_analytics.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/layouts/_header.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_modal_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/layouts/_modal_header.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/layouts/pdf.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/layouts/pdf.html.erb -------------------------------------------------------------------------------- /app/views/layouts/signup.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/layouts/signup.html.erb -------------------------------------------------------------------------------- /app/views/members/_error_alert.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/members/_error_alert.html.erb -------------------------------------------------------------------------------- /app/views/members/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/members/_form.html.erb -------------------------------------------------------------------------------- /app/views/members/_person.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/members/_person.json.jbuilder -------------------------------------------------------------------------------- /app/views/members/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/members/edit.html.erb -------------------------------------------------------------------------------- /app/views/members/index.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'application/client' %> 2 | -------------------------------------------------------------------------------- /app/views/members/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/members/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/members/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/members/new.html.erb -------------------------------------------------------------------------------- /app/views/members/show.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'application/client' %> 2 | -------------------------------------------------------------------------------- /app/views/members/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/members/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/members/signup_form_email.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/members/signup_form_email.html.erb -------------------------------------------------------------------------------- /app/views/members/signup_form_facebook.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'signup_form_oauth' %> 2 | -------------------------------------------------------------------------------- /app/views/members/signup_form_google.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'signup_form_oauth' %> 2 | -------------------------------------------------------------------------------- /app/views/profile/_group_list_item.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/profile/_group_list_item.html.erb -------------------------------------------------------------------------------- /app/views/profile/_navigation.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/profile/_navigation.html.erb -------------------------------------------------------------------------------- /app/views/profile/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/profile/index.html.erb -------------------------------------------------------------------------------- /app/views/shared/_modal_actions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/shared/_modal_actions.html.erb -------------------------------------------------------------------------------- /app/views/subgroups/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/subgroups/new.html.erb -------------------------------------------------------------------------------- /app/views/zipcodes/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/app/views/zipcodes/show.json.jbuilder -------------------------------------------------------------------------------- /bin/_blackbox_common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/_blackbox_common.sh -------------------------------------------------------------------------------- /bin/_blackbox_common_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/_blackbox_common_test.sh -------------------------------------------------------------------------------- /bin/_stack_lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/_stack_lib.sh -------------------------------------------------------------------------------- /bin/blackbox_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/blackbox_README.md -------------------------------------------------------------------------------- /bin/blackbox_addadmin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/blackbox_addadmin -------------------------------------------------------------------------------- /bin/blackbox_cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/blackbox_cat -------------------------------------------------------------------------------- /bin/blackbox_decrypt_all_files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/blackbox_decrypt_all_files -------------------------------------------------------------------------------- /bin/blackbox_deregister_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/blackbox_deregister_file -------------------------------------------------------------------------------- /bin/blackbox_diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/blackbox_diff -------------------------------------------------------------------------------- /bin/blackbox_edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/blackbox_edit -------------------------------------------------------------------------------- /bin/blackbox_edit_end: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/blackbox_edit_end -------------------------------------------------------------------------------- /bin/blackbox_edit_start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/blackbox_edit_start -------------------------------------------------------------------------------- /bin/blackbox_initialize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/blackbox_initialize -------------------------------------------------------------------------------- /bin/blackbox_list_admins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/blackbox_list_admins -------------------------------------------------------------------------------- /bin/blackbox_list_files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/blackbox_list_files -------------------------------------------------------------------------------- /bin/blackbox_listadmins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/blackbox_listadmins -------------------------------------------------------------------------------- /bin/blackbox_postdeploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/blackbox_postdeploy -------------------------------------------------------------------------------- /bin/blackbox_recurse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/blackbox_recurse -------------------------------------------------------------------------------- /bin/blackbox_register_new_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/blackbox_register_new_file -------------------------------------------------------------------------------- /bin/blackbox_removeadmin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/blackbox_removeadmin -------------------------------------------------------------------------------- /bin/blackbox_shred_all_files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/blackbox_shred_all_files -------------------------------------------------------------------------------- /bin/blackbox_update_all_files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/blackbox_update_all_files -------------------------------------------------------------------------------- /bin/blackbox_whatsnew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/blackbox_whatsnew -------------------------------------------------------------------------------- /bin/bourbon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/bourbon -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/bundler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/bundler -------------------------------------------------------------------------------- /bin/byebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/byebug -------------------------------------------------------------------------------- /bin/copy_configs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/copy_configs -------------------------------------------------------------------------------- /bin/derailed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/derailed -------------------------------------------------------------------------------- /bin/docker-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/docker-build -------------------------------------------------------------------------------- /bin/docker-cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/docker-cmd -------------------------------------------------------------------------------- /bin/docker-down: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/docker-down -------------------------------------------------------------------------------- /bin/docker-up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/docker-up -------------------------------------------------------------------------------- /bin/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/env -------------------------------------------------------------------------------- /bin/erubis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/erubis -------------------------------------------------------------------------------- /bin/foreman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/foreman -------------------------------------------------------------------------------- /bin/heapy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/heapy -------------------------------------------------------------------------------- /bin/httparty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/httparty -------------------------------------------------------------------------------- /bin/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/install -------------------------------------------------------------------------------- /bin/listen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/listen -------------------------------------------------------------------------------- /bin/mongrel_rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/mongrel_rpm -------------------------------------------------------------------------------- /bin/newrelic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/newrelic -------------------------------------------------------------------------------- /bin/newrelic_cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/newrelic_cmd -------------------------------------------------------------------------------- /bin/nokogiri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/nokogiri -------------------------------------------------------------------------------- /bin/nrdebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/nrdebug -------------------------------------------------------------------------------- /bin/puma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/puma -------------------------------------------------------------------------------- /bin/pumactl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/pumactl -------------------------------------------------------------------------------- /bin/rackup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/rackup -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rdebug-ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/rdebug-ide -------------------------------------------------------------------------------- /bin/resque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/resque -------------------------------------------------------------------------------- /bin/resque-web: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/resque-web -------------------------------------------------------------------------------- /bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/run -------------------------------------------------------------------------------- /bin/run-services: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/run-services -------------------------------------------------------------------------------- /bin/run-web-docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/run-web-docker -------------------------------------------------------------------------------- /bin/safe_yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/safe_yaml -------------------------------------------------------------------------------- /bin/sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/sass -------------------------------------------------------------------------------- /bin/sass-convert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/sass-convert -------------------------------------------------------------------------------- /bin/scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/scss -------------------------------------------------------------------------------- /bin/seed-db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/seed-db -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/sprockets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/sprockets -------------------------------------------------------------------------------- /bin/thor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/thor -------------------------------------------------------------------------------- /bin/tilt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/tilt -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/update -------------------------------------------------------------------------------- /bin/wkhtmltopdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/wkhtmltopdf -------------------------------------------------------------------------------- /bin/wkhtmltopdf-linux-amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/bin/wkhtmltopdf-linux-amd64 -------------------------------------------------------------------------------- /client/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/client/.babelrc -------------------------------------------------------------------------------- /client/REACT_ON_RAILS_CLIENT_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/client/REACT_ON_RAILS_CLIENT_README.md -------------------------------------------------------------------------------- /client/app/bundles/Events/actions/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/client/app/bundles/Events/actions/index.jsx -------------------------------------------------------------------------------- /client/app/bundles/Events/actions/types.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/client/app/bundles/Events/actions/types.jsx -------------------------------------------------------------------------------- /client/app/bundles/Events/components/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/client/app/bundles/Events/components/App.jsx -------------------------------------------------------------------------------- /client/app/bundles/Events/components/Nav.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/client/app/bundles/Events/components/Nav.jsx -------------------------------------------------------------------------------- /client/app/bundles/Events/history.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/client/app/bundles/Events/history.jsx -------------------------------------------------------------------------------- /client/app/bundles/Events/reducers/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/client/app/bundles/Events/reducers/index.jsx -------------------------------------------------------------------------------- /client/app/bundles/Events/routes/routes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/client/app/bundles/Events/routes/routes.jsx -------------------------------------------------------------------------------- /client/app/bundles/Events/utils/Client.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/client/app/bundles/Events/utils/Client.jsx -------------------------------------------------------------------------------- /client/app/bundles/Events/utils/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/client/app/bundles/Events/utils/index.jsx -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/client/package.json -------------------------------------------------------------------------------- /client/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/client/webpack.config.js -------------------------------------------------------------------------------- /client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/client/yarn.lock -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/feature_toggles.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/feature_toggles.yml.example -------------------------------------------------------------------------------- /config/feature_toggles.yml.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/feature_toggles.yml.gpg -------------------------------------------------------------------------------- /config/heroku.yml.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/heroku.yml.gpg -------------------------------------------------------------------------------- /config/initializers/active_admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/initializers/active_admin.rb -------------------------------------------------------------------------------- /config/initializers/acts_as_taggable_on.rb: -------------------------------------------------------------------------------- 1 | ActsAsTaggableOn.remove_unused_tags = true -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/doorkeeper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/initializers/doorkeeper.rb -------------------------------------------------------------------------------- /config/initializers/geokit_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/initializers/geokit_config.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/paper_trail.rb: -------------------------------------------------------------------------------- 1 | PaperTrail.config.track_associations = false -------------------------------------------------------------------------------- /config/initializers/react_on_rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/initializers/react_on_rails.rb -------------------------------------------------------------------------------- /config/initializers/serializier.rb: -------------------------------------------------------------------------------- 1 | ActiveModelSerializers.config.adapter = :json_api 2 | -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/wicked_pdf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/initializers/wicked_pdf.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/doorkeeper.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/locales/doorkeeper.en.yml -------------------------------------------------------------------------------- /config/locales/en.bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/locales/en.bootstrap.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/networks.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/networks.yml.example -------------------------------------------------------------------------------- /config/networks.yml.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/networks.yml.gpg -------------------------------------------------------------------------------- /config/newrelic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/newrelic.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/spring.rb -------------------------------------------------------------------------------- /config/whacamole.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/config/whacamole.rb -------------------------------------------------------------------------------- /db/migrate/20161219033005_create_people.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/db/migrate/20161219033005_create_people.rb -------------------------------------------------------------------------------- /db/migrate/20161221233408_create_tickets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/db/migrate/20161221233408_create_tickets.rb -------------------------------------------------------------------------------- /db/migrate/20161222073953_create_profiles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/db/migrate/20161222073953_create_profiles.rb -------------------------------------------------------------------------------- /db/migrate/20161222074319_create_payments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/db/migrate/20161222074319_create_payments.rb -------------------------------------------------------------------------------- /db/migrate/20161222074347_create_targets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/db/migrate/20161222074347_create_targets.rb -------------------------------------------------------------------------------- /db/migrate/20161222074549_create_answers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/db/migrate/20161222074549_create_answers.rb -------------------------------------------------------------------------------- /db/migrate/20161222074627_create_scripts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/db/migrate/20161222074627_create_scripts.rb -------------------------------------------------------------------------------- /db/migrate/20161222215258_create_events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/db/migrate/20161222215258_create_events.rb -------------------------------------------------------------------------------- /db/migrate/20161227024237_create_forms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/db/migrate/20161227024237_create_forms.rb -------------------------------------------------------------------------------- /db/migrate/20170101020252_create_queries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/db/migrate/20170101020252_create_queries.rb -------------------------------------------------------------------------------- /db/migrate/20170104023611_create_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/db/migrate/20170104023611_create_groups.rb -------------------------------------------------------------------------------- /db/migrate/20170125195323_create_zipcodes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/db/migrate/20170125195323_create_zipcodes.rb -------------------------------------------------------------------------------- /db/migrate/20170228031144_add_identifiers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/db/migrate/20170228031144_add_identifiers.rb -------------------------------------------------------------------------------- /db/migrate/20170516161832_drop_api_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/db/migrate/20170516161832_drop_api_user.rb -------------------------------------------------------------------------------- /db/migrate/20170531202932_create_origins.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/db/migrate/20170531202932_create_origins.rb -------------------------------------------------------------------------------- /db/migrate/20170613183620_create_notes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/db/migrate/20170613183620_create_notes.rb -------------------------------------------------------------------------------- /db/migrate/20170621184631_create_versions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/db/migrate/20170621184631_create_versions.rb -------------------------------------------------------------------------------- /db/migrate/20180320172047_create_network.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/db/migrate/20180320172047_create_network.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/facebook-oauth-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/docs/facebook-oauth-setup.md -------------------------------------------------------------------------------- /docs/feature-toggles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/docs/feature-toggles.md -------------------------------------------------------------------------------- /docs/google-group-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/docs/google-group-setup.md -------------------------------------------------------------------------------- /docs/google-oauth-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/docs/google-oauth-setup.md -------------------------------------------------------------------------------- /generator_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/generator_notes.md -------------------------------------------------------------------------------- /jekyll/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/Gemfile -------------------------------------------------------------------------------- /jekyll/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/Gemfile.lock -------------------------------------------------------------------------------- /jekyll/README.md: -------------------------------------------------------------------------------- 1 | # website -------------------------------------------------------------------------------- /jekyll/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_config.yml -------------------------------------------------------------------------------- /jekyll/_includes/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_includes/nav.html -------------------------------------------------------------------------------- /jekyll/_includes/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_includes/sidebar.html -------------------------------------------------------------------------------- /jekyll/_layouts/bigheader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_layouts/bigheader.html -------------------------------------------------------------------------------- /jekyll/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_layouts/default.html -------------------------------------------------------------------------------- /jekyll/_layouts/default_linear.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_layouts/default_linear.html -------------------------------------------------------------------------------- /jekyll/_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_layouts/post.html -------------------------------------------------------------------------------- /jekyll/_layouts/post_linear.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_layouts/post_linear.html -------------------------------------------------------------------------------- /jekyll/_posts/2017-01-25-update1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_posts/2017-01-25-update1.md -------------------------------------------------------------------------------- /jekyll/_posts/2017-02-12-update2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_posts/2017-02-12-update2.md -------------------------------------------------------------------------------- /jekyll/_posts/2017-04-03-update3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_posts/2017-04-03-update3.md -------------------------------------------------------------------------------- /jekyll/_site/README.md: -------------------------------------------------------------------------------- 1 | # website -------------------------------------------------------------------------------- /jekyll/_site/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_site/about.html -------------------------------------------------------------------------------- /jekyll/_site/assets/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_site/assets/css/base.css -------------------------------------------------------------------------------- /jekyll/_site/assets/css/css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_site/assets/css/css -------------------------------------------------------------------------------- /jekyll/_site/assets/css/font/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_site/assets/css/font/FontAwesome.otf -------------------------------------------------------------------------------- /jekyll/_site/assets/css/images/toggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_site/assets/css/images/toggle.svg -------------------------------------------------------------------------------- /jekyll/_site/assets/images/affinity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_site/assets/images/affinity.svg -------------------------------------------------------------------------------- /jekyll/_site/assets/images/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_site/assets/images/flag.svg -------------------------------------------------------------------------------- /jekyll/_site/assets/images/people.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_site/assets/images/people.svg -------------------------------------------------------------------------------- /jekyll/_site/assets/images/person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_site/assets/images/person.svg -------------------------------------------------------------------------------- /jekyll/_site/assets/images/saturn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_site/assets/images/saturn.svg -------------------------------------------------------------------------------- /jekyll/_site/assets/images/screenshots.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_site/assets/images/screenshots.jpg -------------------------------------------------------------------------------- /jekyll/_site/assets/js/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_site/assets/js/html5shiv.js -------------------------------------------------------------------------------- /jekyll/_site/assets/js/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_site/assets/js/init.js -------------------------------------------------------------------------------- /jekyll/_site/assets/js/skel-panels.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_site/assets/js/skel-panels.min.js -------------------------------------------------------------------------------- /jekyll/_site/assets/js/skel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_site/assets/js/skel.min.js -------------------------------------------------------------------------------- /jekyll/_site/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_site/assets/main.css -------------------------------------------------------------------------------- /jekyll/_site/blog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_site/blog/index.html -------------------------------------------------------------------------------- /jekyll/_site/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_site/contact.html -------------------------------------------------------------------------------- /jekyll/_site/feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_site/feed.xml -------------------------------------------------------------------------------- /jekyll/_site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_site/index.html -------------------------------------------------------------------------------- /jekyll/_site/joinbeta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_site/joinbeta.html -------------------------------------------------------------------------------- /jekyll/_site/updates/2017/01/25/update1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_site/updates/2017/01/25/update1.html -------------------------------------------------------------------------------- /jekyll/_site/updates/2017/02/12/update2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_site/updates/2017/02/12/update2.html -------------------------------------------------------------------------------- /jekyll/_site/updates/2017/04/03/update3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/_site/updates/2017/04/03/update3.html -------------------------------------------------------------------------------- /jekyll/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/about.md -------------------------------------------------------------------------------- /jekyll/assets/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/assets/css/base.css -------------------------------------------------------------------------------- /jekyll/assets/css/css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/assets/css/css -------------------------------------------------------------------------------- /jekyll/assets/css/font/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/assets/css/font/FontAwesome.otf -------------------------------------------------------------------------------- /jekyll/assets/css/images/toggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/assets/css/images/toggle.svg -------------------------------------------------------------------------------- /jekyll/assets/images/affinity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/assets/images/affinity.svg -------------------------------------------------------------------------------- /jekyll/assets/images/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/assets/images/flag.svg -------------------------------------------------------------------------------- /jekyll/assets/images/people.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/assets/images/people.svg -------------------------------------------------------------------------------- /jekyll/assets/images/person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/assets/images/person.svg -------------------------------------------------------------------------------- /jekyll/assets/images/saturn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/assets/images/saturn.svg -------------------------------------------------------------------------------- /jekyll/assets/images/screenshots.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/assets/images/screenshots.jpg -------------------------------------------------------------------------------- /jekyll/assets/js/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/assets/js/html5shiv.js -------------------------------------------------------------------------------- /jekyll/assets/js/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/assets/js/init.js -------------------------------------------------------------------------------- /jekyll/assets/js/skel-panels.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/assets/js/skel-panels.min.js -------------------------------------------------------------------------------- /jekyll/assets/js/skel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/assets/js/skel.min.js -------------------------------------------------------------------------------- /jekyll/blog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/blog/index.html -------------------------------------------------------------------------------- /jekyll/contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/contact.md -------------------------------------------------------------------------------- /jekyll/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/index.html -------------------------------------------------------------------------------- /jekyll/joinbeta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/jekyll/joinbeta.md -------------------------------------------------------------------------------- /keyrings/live/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/keyrings/live/.gitattributes -------------------------------------------------------------------------------- /keyrings/live/blackbox-admins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/keyrings/live/blackbox-admins.txt -------------------------------------------------------------------------------- /keyrings/live/blackbox-files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/keyrings/live/blackbox-files.txt -------------------------------------------------------------------------------- /keyrings/live/pubring.kbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/keyrings/live/pubring.kbx -------------------------------------------------------------------------------- /keyrings/live/trustdb.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/keyrings/live/trustdb.gpg -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/export/heroku/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/facebook/api_agent.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/lib/facebook/api_agent.rb -------------------------------------------------------------------------------- /lib/facebook/authorization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/lib/facebook/authorization.rb -------------------------------------------------------------------------------- /lib/facebook/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/lib/facebook/event.rb -------------------------------------------------------------------------------- /lib/facebook/event_attendance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/lib/facebook/event_attendance.rb -------------------------------------------------------------------------------- /lib/tasks/action_network_syncer.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/lib/tasks/action_network_syncer.rake -------------------------------------------------------------------------------- /lib/tasks/config.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/lib/tasks/config.rake -------------------------------------------------------------------------------- /lib/tasks/feature_toggles.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/lib/tasks/feature_toggles.rake -------------------------------------------------------------------------------- /lib/tasks/heroku.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/lib/tasks/heroku.rake -------------------------------------------------------------------------------- /lib/tasks/import_keys.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/lib/tasks/import_keys.rake -------------------------------------------------------------------------------- /lib/tasks/memberships_role.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/lib/tasks/memberships_role.rake -------------------------------------------------------------------------------- /lib/tasks/qa.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/lib/tasks/qa.rake -------------------------------------------------------------------------------- /lib/tasks/resque.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/lib/tasks/resque.rake -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/package.json -------------------------------------------------------------------------------- /project_roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/project_roadmap.md -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/500.html -------------------------------------------------------------------------------- /public/README.md: -------------------------------------------------------------------------------- 1 | # website -------------------------------------------------------------------------------- /public/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/about.html -------------------------------------------------------------------------------- /public/assets/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/assets/css/base.css -------------------------------------------------------------------------------- /public/assets/css/css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/assets/css/css -------------------------------------------------------------------------------- /public/assets/css/font/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/assets/css/font/FontAwesome.otf -------------------------------------------------------------------------------- /public/assets/css/images/toggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/assets/css/images/toggle.svg -------------------------------------------------------------------------------- /public/assets/images/affinity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/assets/images/affinity.svg -------------------------------------------------------------------------------- /public/assets/images/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/assets/images/flag.svg -------------------------------------------------------------------------------- /public/assets/images/people.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/assets/images/people.svg -------------------------------------------------------------------------------- /public/assets/images/person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/assets/images/person.svg -------------------------------------------------------------------------------- /public/assets/images/saturn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/assets/images/saturn.svg -------------------------------------------------------------------------------- /public/assets/images/screenshots.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/assets/images/screenshots.jpg -------------------------------------------------------------------------------- /public/assets/js/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/assets/js/html5shiv.js -------------------------------------------------------------------------------- /public/assets/js/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/assets/js/init.js -------------------------------------------------------------------------------- /public/assets/js/skel-panels.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/assets/js/skel-panels.min.js -------------------------------------------------------------------------------- /public/assets/js/skel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/assets/js/skel.min.js -------------------------------------------------------------------------------- /public/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/assets/main.css -------------------------------------------------------------------------------- /public/blog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/blog/index.html -------------------------------------------------------------------------------- /public/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/contact.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/feed.xml -------------------------------------------------------------------------------- /public/hal-browser/MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/hal-browser/MIT-LICENSE.txt -------------------------------------------------------------------------------- /public/hal-browser/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/hal-browser/README.adoc -------------------------------------------------------------------------------- /public/hal-browser/browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/hal-browser/browser.html -------------------------------------------------------------------------------- /public/hal-browser/js/hal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/hal-browser/js/hal.js -------------------------------------------------------------------------------- /public/hal-browser/js/hal/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/hal-browser/js/hal/browser.js -------------------------------------------------------------------------------- /public/hal-browser/js/hal/http/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/hal-browser/js/hal/http/client.js -------------------------------------------------------------------------------- /public/hal-browser/js/hal/resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/hal-browser/js/hal/resource.js -------------------------------------------------------------------------------- /public/hal-browser/js/hal/views/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/hal-browser/js/hal/views/browser.js -------------------------------------------------------------------------------- /public/hal-browser/js/hal/views/explorer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/hal-browser/js/hal/views/explorer.js -------------------------------------------------------------------------------- /public/hal-browser/js/hal/views/inspector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/hal-browser/js/hal/views/inspector.js -------------------------------------------------------------------------------- /public/hal-browser/js/hal/views/links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/hal-browser/js/hal/views/links.js -------------------------------------------------------------------------------- /public/hal-browser/js/hal/views/resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/hal-browser/js/hal/views/resource.js -------------------------------------------------------------------------------- /public/hal-browser/js/hal/views/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/hal-browser/js/hal/views/response.js -------------------------------------------------------------------------------- /public/hal-browser/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/hal-browser/login.html -------------------------------------------------------------------------------- /public/hal-browser/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/hal-browser/styles.css -------------------------------------------------------------------------------- /public/hal-browser/vendor/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/hal-browser/vendor/css/bootstrap.css -------------------------------------------------------------------------------- /public/hal-browser/vendor/js/URI.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/hal-browser/vendor/js/URI.min.js -------------------------------------------------------------------------------- /public/hal-browser/vendor/js/backbone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/hal-browser/vendor/js/backbone.js -------------------------------------------------------------------------------- /public/hal-browser/vendor/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/hal-browser/vendor/js/bootstrap.js -------------------------------------------------------------------------------- /public/hal-browser/vendor/js/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/hal-browser/vendor/js/underscore.js -------------------------------------------------------------------------------- /public/hal-browser/vendor/js/uritemplates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/hal-browser/vendor/js/uritemplates.js -------------------------------------------------------------------------------- /public/images/32329703291_7df32119e1_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/images/32329703291_7df32119e1_b.jpg -------------------------------------------------------------------------------- /public/images/affinity-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/images/affinity-logo.svg -------------------------------------------------------------------------------- /public/images/affinity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/images/affinity.svg -------------------------------------------------------------------------------- /public/images/email-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/images/email-icon.svg -------------------------------------------------------------------------------- /public/images/facebook-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/images/facebook-logo.svg -------------------------------------------------------------------------------- /public/images/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/images/flag.svg -------------------------------------------------------------------------------- /public/images/google-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/images/google-logo.svg -------------------------------------------------------------------------------- /public/images/people.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/images/people.svg -------------------------------------------------------------------------------- /public/images/person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/images/person.svg -------------------------------------------------------------------------------- /public/images/saturn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/images/saturn.svg -------------------------------------------------------------------------------- /public/images/screenshots.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/images/screenshots.jpg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/index.html -------------------------------------------------------------------------------- /public/joinbeta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/joinbeta.html -------------------------------------------------------------------------------- /public/mocks/Commons_campaigns_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/Commons_campaigns_1.html -------------------------------------------------------------------------------- /public/mocks/Commons_campaigns_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/Commons_campaigns_2.html -------------------------------------------------------------------------------- /public/mocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/README.md -------------------------------------------------------------------------------- /public/mocks/admin_groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/admin_groups.html -------------------------------------------------------------------------------- /public/mocks/admin_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/admin_user.html -------------------------------------------------------------------------------- /public/mocks/commons_campaign_1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/commons_campaign_1.css -------------------------------------------------------------------------------- /public/mocks/commons_campaign_1.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/commons_campaign_1.less -------------------------------------------------------------------------------- /public/mocks/commons_campaign_2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/commons_campaign_2.css -------------------------------------------------------------------------------- /public/mocks/commons_campaign_2.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/commons_campaign_2.less -------------------------------------------------------------------------------- /public/mocks/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/css/admin.css -------------------------------------------------------------------------------- /public/mocks/css/user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/css/user.css -------------------------------------------------------------------------------- /public/mocks/event_manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/event_manager.html -------------------------------------------------------------------------------- /public/mocks/group_event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/group_event.html -------------------------------------------------------------------------------- /public/mocks/group_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/group_page.html -------------------------------------------------------------------------------- /public/mocks/group_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/group_search.html -------------------------------------------------------------------------------- /public/mocks/group_signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/group_signup.html -------------------------------------------------------------------------------- /public/mocks/group_tasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/group_tasks.html -------------------------------------------------------------------------------- /public/mocks/group_volunteer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/group_volunteer.html -------------------------------------------------------------------------------- /public/mocks/img/jane_doe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/img/jane_doe.jpg -------------------------------------------------------------------------------- /public/mocks/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/img/logo.png -------------------------------------------------------------------------------- /public/mocks/img/logo_unicorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/img/logo_unicorn.png -------------------------------------------------------------------------------- /public/mocks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/index.html -------------------------------------------------------------------------------- /public/mocks/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/js/admin.js -------------------------------------------------------------------------------- /public/mocks/js/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/js/data.js -------------------------------------------------------------------------------- /public/mocks/js/data_orig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/js/data_orig.js -------------------------------------------------------------------------------- /public/mocks/js/public.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/js/public.js -------------------------------------------------------------------------------- /public/mocks/js/save_data.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/mocks/tasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/tasks.html -------------------------------------------------------------------------------- /public/mocks/user_tasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/user_tasks.html -------------------------------------------------------------------------------- /public/mocks/vendor/swag/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/vendor/swag/.gitignore -------------------------------------------------------------------------------- /public/mocks/vendor/swag/Cakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/vendor/swag/Cakefile -------------------------------------------------------------------------------- /public/mocks/vendor/swag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/vendor/swag/LICENSE -------------------------------------------------------------------------------- /public/mocks/vendor/swag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/vendor/swag/README.md -------------------------------------------------------------------------------- /public/mocks/vendor/swag/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/swag'); 2 | -------------------------------------------------------------------------------- /public/mocks/vendor/swag/lib/swag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/vendor/swag/lib/swag.js -------------------------------------------------------------------------------- /public/mocks/vendor/swag/lib/swag.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/vendor/swag/lib/swag.min.js -------------------------------------------------------------------------------- /public/mocks/vendor/swag/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/vendor/swag/package.json -------------------------------------------------------------------------------- /public/mocks/vendor/swag/src/swag.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/vendor/swag/src/swag.coffee -------------------------------------------------------------------------------- /public/mocks/vendor/swag/test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/mocks/vendor/swag/test/mocha.opts -------------------------------------------------------------------------------- /public/plus/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/.gitignore -------------------------------------------------------------------------------- /public/plus/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/LICENSE.txt -------------------------------------------------------------------------------- /public/plus/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/about.html -------------------------------------------------------------------------------- /public/plus/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/plus/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/plus/call/.gitignore: -------------------------------------------------------------------------------- 1 | .sass-cache* 2 | *.css.map 3 | roadmap.txt 4 | -------------------------------------------------------------------------------- /public/plus/call/app/call.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/app/call.js -------------------------------------------------------------------------------- /public/plus/call/app/campaign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/app/campaign.js -------------------------------------------------------------------------------- /public/plus/call/app/campaigns/AZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/app/campaigns/AZ.json -------------------------------------------------------------------------------- /public/plus/call/app/campaigns/MT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/app/campaigns/MT.json -------------------------------------------------------------------------------- /public/plus/call/app/campaigns/OK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/app/campaigns/OK.json -------------------------------------------------------------------------------- /public/plus/call/app/campaigns/WY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/app/campaigns/WY.json -------------------------------------------------------------------------------- /public/plus/call/app/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/app/form.js -------------------------------------------------------------------------------- /public/plus/call/app/form_mods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/app/form_mods.js -------------------------------------------------------------------------------- /public/plus/call/app/heads.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/app/heads.js -------------------------------------------------------------------------------- /public/plus/call/app/heads/devos-300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/app/heads/devos-300.jpg -------------------------------------------------------------------------------- /public/plus/call/app/heads/mnuchin-300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/app/heads/mnuchin-300.jpg -------------------------------------------------------------------------------- /public/plus/call/app/heads/price-300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/app/heads/price-300.jpg -------------------------------------------------------------------------------- /public/plus/call/app/heads/pruitt-300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/app/heads/pruitt-300.jpg -------------------------------------------------------------------------------- /public/plus/call/app/heads/puzder-300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/app/heads/puzder-300.jpg -------------------------------------------------------------------------------- /public/plus/call/app/heads/sessions-300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/app/heads/sessions-300.jpg -------------------------------------------------------------------------------- /public/plus/call/app/heads/tillerson-300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/app/heads/tillerson-300.jpg -------------------------------------------------------------------------------- /public/plus/call/app/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/app/jquery.js -------------------------------------------------------------------------------- /public/plus/call/app/js-yaml.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/app/js-yaml.min.js -------------------------------------------------------------------------------- /public/plus/call/app/referrer_controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/app/referrer_controls.js -------------------------------------------------------------------------------- /public/plus/call/app/referrers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/app/referrers.yaml -------------------------------------------------------------------------------- /public/plus/call/app/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/app/require.js -------------------------------------------------------------------------------- /public/plus/call/imgs/dems_xsmall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/imgs/dems_xsmall.gif -------------------------------------------------------------------------------- /public/plus/call/imgs/kos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/imgs/kos.png -------------------------------------------------------------------------------- /public/plus/call/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/index.html -------------------------------------------------------------------------------- /public/plus/call/price-senate/app/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/price-senate/app/load.js -------------------------------------------------------------------------------- /public/plus/call/price-senate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/price-senate/index.html -------------------------------------------------------------------------------- /public/plus/call/pruitt-senate/app/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/pruitt-senate/app/load.js -------------------------------------------------------------------------------- /public/plus/call/pruitt-senate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/pruitt-senate/index.html -------------------------------------------------------------------------------- /public/plus/call/sass/_body.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/sass/_body.scss -------------------------------------------------------------------------------- /public/plus/call/sass/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/sass/_form.scss -------------------------------------------------------------------------------- /public/plus/call/sass/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/sass/_header.scss -------------------------------------------------------------------------------- /public/plus/call/sass/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/sass/style.scss -------------------------------------------------------------------------------- /public/plus/call/style/dems_menu_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/style/dems_menu_bg.png -------------------------------------------------------------------------------- /public/plus/call/style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/style/style.css -------------------------------------------------------------------------------- /public/plus/call/tillerson-dems/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/tillerson-dems/index.html -------------------------------------------------------------------------------- /public/plus/call/tillerson-dems/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/call/tillerson-dems/main.js -------------------------------------------------------------------------------- /public/plus/democrats/.gitignore: -------------------------------------------------------------------------------- 1 | .sass-cache 2 | -------------------------------------------------------------------------------- /public/plus/democrats/act/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/democrats/act/index.html -------------------------------------------------------------------------------- /public/plus/democrats/act/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/democrats/act/main.js -------------------------------------------------------------------------------- /public/plus/democrats/app/call.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/democrats/app/call.js -------------------------------------------------------------------------------- /public/plus/democrats/app/campaign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/democrats/app/campaign.js -------------------------------------------------------------------------------- /public/plus/democrats/app/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/democrats/app/form.js -------------------------------------------------------------------------------- /public/plus/democrats/app/form_mods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/democrats/app/form_mods.js -------------------------------------------------------------------------------- /public/plus/democrats/app/heads.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/democrats/app/heads.js -------------------------------------------------------------------------------- /public/plus/democrats/app/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/democrats/app/jquery.js -------------------------------------------------------------------------------- /public/plus/democrats/app/js-yaml.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/democrats/app/js-yaml.min.js -------------------------------------------------------------------------------- /public/plus/democrats/app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/democrats/app/main.js -------------------------------------------------------------------------------- /public/plus/democrats/app/referrers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/democrats/app/referrers.yaml -------------------------------------------------------------------------------- /public/plus/democrats/app/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/democrats/app/require.js -------------------------------------------------------------------------------- /public/plus/democrats/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/democrats/index.html -------------------------------------------------------------------------------- /public/plus/democrats/roadmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/democrats/roadmap.txt -------------------------------------------------------------------------------- /public/plus/democrats/sass/body.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/democrats/sass/body.scss -------------------------------------------------------------------------------- /public/plus/democrats/sass/form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/democrats/sass/form.scss -------------------------------------------------------------------------------- /public/plus/democrats/sass/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/democrats/sass/header.scss -------------------------------------------------------------------------------- /public/plus/democrats/signup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/democrats/signup/index.html -------------------------------------------------------------------------------- /public/plus/democrats/signup/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/democrats/signup/main.js -------------------------------------------------------------------------------- /public/plus/democrats/style/body.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/democrats/style/body.css -------------------------------------------------------------------------------- /public/plus/democrats/style/body.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/democrats/style/body.css.map -------------------------------------------------------------------------------- /public/plus/democrats/style/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/democrats/style/form.css -------------------------------------------------------------------------------- /public/plus/democrats/style/form.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/democrats/style/form.css.map -------------------------------------------------------------------------------- /public/plus/democrats/style/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/democrats/style/header.css -------------------------------------------------------------------------------- /public/plus/democrats/style/header.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/democrats/style/header.css.map -------------------------------------------------------------------------------- /public/plus/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/plus/img/bgnoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/img/bgnoise.png -------------------------------------------------------------------------------- /public/plus/img/blue_wavy_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/img/blue_wavy_logo.jpg -------------------------------------------------------------------------------- /public/plus/indivisibleform/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/indivisibleform/form.html -------------------------------------------------------------------------------- /public/plus/indivisibleform/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/indivisibleform/index.html -------------------------------------------------------------------------------- /public/plus/indivisibleform/js/parsley.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/indivisibleform/js/parsley.js -------------------------------------------------------------------------------- /public/plus/indivisibleform/parsley1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/indivisibleform/parsley1.html -------------------------------------------------------------------------------- /public/plus/indivisibleform/style/body.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/indivisibleform/style/body.css -------------------------------------------------------------------------------- /public/plus/indivisibleform/style/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/indivisibleform/style/form.css -------------------------------------------------------------------------------- /public/plus/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/main.html -------------------------------------------------------------------------------- /public/plus/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/robots.txt -------------------------------------------------------------------------------- /public/plus/signup/app/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/signup/app/form.js -------------------------------------------------------------------------------- /public/plus/signup/app/form_mods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/signup/app/form_mods.js -------------------------------------------------------------------------------- /public/plus/signup/app/heads.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/signup/app/heads.js -------------------------------------------------------------------------------- /public/plus/signup/app/heads/devos-300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/signup/app/heads/devos-300.jpg -------------------------------------------------------------------------------- /public/plus/signup/app/heads/price-300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/signup/app/heads/price-300.jpg -------------------------------------------------------------------------------- /public/plus/signup/app/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/signup/app/jquery.js -------------------------------------------------------------------------------- /public/plus/signup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/signup/index.html -------------------------------------------------------------------------------- /public/plus/signup/sass/_body.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/signup/sass/_body.scss -------------------------------------------------------------------------------- /public/plus/signup/sass/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/signup/sass/_form.scss -------------------------------------------------------------------------------- /public/plus/signup/sass/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/signup/sass/_header.scss -------------------------------------------------------------------------------- /public/plus/signup/sass/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/signup/sass/style.scss -------------------------------------------------------------------------------- /public/plus/signup/style/dems_menu_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/signup/style/dems_menu_bg.png -------------------------------------------------------------------------------- /public/plus/signup/style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/signup/style/style.css -------------------------------------------------------------------------------- /public/plus/signup/style/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/signup/style/style.css.map -------------------------------------------------------------------------------- /public/plus/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/site.js -------------------------------------------------------------------------------- /public/plus/stylesheets/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/stylesheets/base.css -------------------------------------------------------------------------------- /public/plus/testpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/plus/testpage.html -------------------------------------------------------------------------------- /public/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/privacy.html -------------------------------------------------------------------------------- /public/updates/2017/01/25/update1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/updates/2017/01/25/update1.html -------------------------------------------------------------------------------- /public/updates/2017/02/12/update2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/updates/2017/02/12/update2.html -------------------------------------------------------------------------------- /public/updates/2017/04/03/update3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/public/updates/2017/04/03/update3.html -------------------------------------------------------------------------------- /test/.rubocop.yml: -------------------------------------------------------------------------------- 1 | inherit_from: ../.rubocop.yml 2 | 3 | Metrics/BlockLength: 4 | Max: 40 5 | -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/controllers/groups_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/controllers/groups_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/join_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/controllers/join_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/notes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/controllers/notes_controller.rb -------------------------------------------------------------------------------- /test/controllers/tags_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/controllers/tags_controller_test.rb -------------------------------------------------------------------------------- /test/factories/email_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/factories/email_address.rb -------------------------------------------------------------------------------- /test/factories/feature_toggles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/factories/feature_toggles.rb -------------------------------------------------------------------------------- /test/factories/group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/factories/group.rb -------------------------------------------------------------------------------- /test/factories/membership.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/factories/membership.rb -------------------------------------------------------------------------------- /test/factories/person.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/factories/person.rb -------------------------------------------------------------------------------- /test/factories/personal_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/factories/personal_address.rb -------------------------------------------------------------------------------- /test/factories/phone_number.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/factories/phone_number.rb -------------------------------------------------------------------------------- /test/factories/tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/factories/tag.rb -------------------------------------------------------------------------------- /test/feature/add_edit_member_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/feature/add_edit_member_test.rb -------------------------------------------------------------------------------- /test/feature/create_group_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/feature/create_group_test.rb -------------------------------------------------------------------------------- /test/feature/dashboard_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/feature/dashboard_test.rb -------------------------------------------------------------------------------- /test/feature/homepage_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/feature/homepage_test.rb -------------------------------------------------------------------------------- /test/feature/join_group_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/feature/join_group_test.rb -------------------------------------------------------------------------------- /test/feature/login_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/feature/login_test.rb -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/addresses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/addresses.yml -------------------------------------------------------------------------------- /test/fixtures/advocacy_campaigns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/advocacy_campaigns.yml -------------------------------------------------------------------------------- /test/fixtures/affiliations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/affiliations.yml -------------------------------------------------------------------------------- /test/fixtures/answers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/answers.yml -------------------------------------------------------------------------------- /test/fixtures/attendances.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/attendances.yml -------------------------------------------------------------------------------- /test/fixtures/canvasses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/canvasses.yml -------------------------------------------------------------------------------- /test/fixtures/canvassing_efforts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/canvassing_efforts.yml -------------------------------------------------------------------------------- /test/fixtures/custom_forms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/custom_forms.yml -------------------------------------------------------------------------------- /test/fixtures/donations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/donations.yml -------------------------------------------------------------------------------- /test/fixtures/email_addresses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/email_addresses.yml -------------------------------------------------------------------------------- /test/fixtures/email_shares.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/email_shares.yml -------------------------------------------------------------------------------- /test/fixtures/events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/events.yml -------------------------------------------------------------------------------- /test/fixtures/events_groups.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/events_groups.yml -------------------------------------------------------------------------------- /test/fixtures/facebook_shares.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/facebook_shares.yml -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/files/attendances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/files/attendances.json -------------------------------------------------------------------------------- /test/fixtures/files/events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/files/events.json -------------------------------------------------------------------------------- /test/fixtures/files/events/att_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/files/events/att_event.json -------------------------------------------------------------------------------- /test/fixtures/files/events2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/files/events2.json -------------------------------------------------------------------------------- /test/fixtures/files/events_page_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/files/events_page_2.json -------------------------------------------------------------------------------- /test/fixtures/files/people.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/files/people.json -------------------------------------------------------------------------------- /test/fixtures/files/people_page_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/files/people_page_2.json -------------------------------------------------------------------------------- /test/fixtures/files/person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/files/person.json -------------------------------------------------------------------------------- /test/fixtures/files/person2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/files/person2.json -------------------------------------------------------------------------------- /test/fixtures/files/person_evan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/files/person_evan.json -------------------------------------------------------------------------------- /test/fixtures/files/person_robert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/files/person_robert.json -------------------------------------------------------------------------------- /test/fixtures/files/service_account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/files/service_account.json -------------------------------------------------------------------------------- /test/fixtures/files/taggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/files/taggings.json -------------------------------------------------------------------------------- /test/fixtures/files/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/files/tags.json -------------------------------------------------------------------------------- /test/fixtures/form_input_groups.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/form_input_groups.yml -------------------------------------------------------------------------------- /test/fixtures/forms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/forms.yml -------------------------------------------------------------------------------- /test/fixtures/forms_groups.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/forms_groups.yml -------------------------------------------------------------------------------- /test/fixtures/fundraising_pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/fundraising_pages.yml -------------------------------------------------------------------------------- /test/fixtures/google_groups.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/google_groups.yml -------------------------------------------------------------------------------- /test/fixtures/groups.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/groups.yml -------------------------------------------------------------------------------- /test/fixtures/groups_petitions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/groups_petitions.yml -------------------------------------------------------------------------------- /test/fixtures/groups_share_pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/groups_share_pages.yml -------------------------------------------------------------------------------- /test/fixtures/identities.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/identities.yml -------------------------------------------------------------------------------- /test/fixtures/memberships.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/memberships.yml -------------------------------------------------------------------------------- /test/fixtures/network_memberships.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/network_memberships.yml -------------------------------------------------------------------------------- /test/fixtures/networks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/networks.yml -------------------------------------------------------------------------------- /test/fixtures/origins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/origins.yml -------------------------------------------------------------------------------- /test/fixtures/outreaches.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/outreaches.yml -------------------------------------------------------------------------------- /test/fixtures/outreaches_targets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/outreaches_targets.yml -------------------------------------------------------------------------------- /test/fixtures/payments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/payments.yml -------------------------------------------------------------------------------- /test/fixtures/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/people.yml -------------------------------------------------------------------------------- /test/fixtures/petitions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/petitions.yml -------------------------------------------------------------------------------- /test/fixtures/petitions_signatures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/petitions_signatures.yml -------------------------------------------------------------------------------- /test/fixtures/petitions_targets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/petitions_targets.yml -------------------------------------------------------------------------------- /test/fixtures/phone_numbers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/phone_numbers.yml -------------------------------------------------------------------------------- /test/fixtures/profiles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/profiles.yml -------------------------------------------------------------------------------- /test/fixtures/queries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/queries.yml -------------------------------------------------------------------------------- /test/fixtures/questions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/questions.yml -------------------------------------------------------------------------------- /test/fixtures/recipients.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/recipients.yml -------------------------------------------------------------------------------- /test/fixtures/referrer_data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/referrer_data.yml -------------------------------------------------------------------------------- /test/fixtures/reminders.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/reminders.yml -------------------------------------------------------------------------------- /test/fixtures/remote_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/remote_events.yml -------------------------------------------------------------------------------- /test/fixtures/responses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/responses.yml -------------------------------------------------------------------------------- /test/fixtures/script_questions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/script_questions.yml -------------------------------------------------------------------------------- /test/fixtures/scripts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/scripts.yml -------------------------------------------------------------------------------- /test/fixtures/share_pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/share_pages.yml -------------------------------------------------------------------------------- /test/fixtures/signatures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/signatures.yml -------------------------------------------------------------------------------- /test/fixtures/signup_forms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/signup_forms.yml -------------------------------------------------------------------------------- /test/fixtures/submissions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/submissions.yml -------------------------------------------------------------------------------- /test/fixtures/tag_origins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/tag_origins.yml -------------------------------------------------------------------------------- /test/fixtures/tags.yml: -------------------------------------------------------------------------------- 1 | one: 2 | id: 1 3 | name: 'testing' 4 | -------------------------------------------------------------------------------- /test/fixtures/targets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/targets.yml -------------------------------------------------------------------------------- /test/fixtures/ticket_levels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/ticket_levels.yml -------------------------------------------------------------------------------- /test/fixtures/tickets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/tickets.yml -------------------------------------------------------------------------------- /test/fixtures/twitter_shares.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/twitter_shares.yml -------------------------------------------------------------------------------- /test/fixtures/zipcodes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/fixtures/zipcodes.yml -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/helpers/attendances_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/helpers/attendances_helper_test.rb -------------------------------------------------------------------------------- /test/helpers/feature_test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/helpers/feature_test_helper.rb -------------------------------------------------------------------------------- /test/helpers/oauth_fixtures.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/helpers/oauth_fixtures.rb -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/authentication_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/integration/authentication_test.rb -------------------------------------------------------------------------------- /test/lib/facebook/event_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/lib/facebook/event_test.rb -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/group_mailer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/mailers/group_mailer_test.rb -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/ability_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/ability_test.rb -------------------------------------------------------------------------------- /test/models/address_input_group_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/address_input_group_test.rb -------------------------------------------------------------------------------- /test/models/address_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/address_test.rb -------------------------------------------------------------------------------- /test/models/advocacy_campaign_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/advocacy_campaign_test.rb -------------------------------------------------------------------------------- /test/models/affilition_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/affilition_test.rb -------------------------------------------------------------------------------- /test/models/answer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/answer_test.rb -------------------------------------------------------------------------------- /test/models/attendance_event_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/attendance_event_test.rb -------------------------------------------------------------------------------- /test/models/attendance_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/attendance_test.rb -------------------------------------------------------------------------------- /test/models/canvass_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/canvass_test.rb -------------------------------------------------------------------------------- /test/models/canvassing_effort_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/canvassing_effort_test.rb -------------------------------------------------------------------------------- /test/models/concerns/bulk_import_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/concerns/bulk_import_test.rb -------------------------------------------------------------------------------- /test/models/concerns/can_signup_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/concerns/can_signup_test.rb -------------------------------------------------------------------------------- /test/models/concerns/networkable_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/concerns/networkable_test.rb -------------------------------------------------------------------------------- /test/models/custom_form_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/custom_form_test.rb -------------------------------------------------------------------------------- /test/models/donation_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/donation_test.rb -------------------------------------------------------------------------------- /test/models/email_address_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/email_address_test.rb -------------------------------------------------------------------------------- /test/models/email_input_group_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/email_input_group_test.rb -------------------------------------------------------------------------------- /test/models/email_share_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/email_share_test.rb -------------------------------------------------------------------------------- /test/models/event_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/event_test.rb -------------------------------------------------------------------------------- /test/models/facebook_share_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/facebook_share_test.rb -------------------------------------------------------------------------------- /test/models/feature_toggle_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/feature_toggle_test.rb -------------------------------------------------------------------------------- /test/models/form_input_group_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/form_input_group_test.rb -------------------------------------------------------------------------------- /test/models/form_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/form_test.rb -------------------------------------------------------------------------------- /test/models/fundraising_page_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/fundraising_page_test.rb -------------------------------------------------------------------------------- /test/models/google_group_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/google_group_test.rb -------------------------------------------------------------------------------- /test/models/group_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/group_test.rb -------------------------------------------------------------------------------- /test/models/identity_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/identity_test.rb -------------------------------------------------------------------------------- /test/models/membership_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/membership_test.rb -------------------------------------------------------------------------------- /test/models/network_membership_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/network_membership_test.rb -------------------------------------------------------------------------------- /test/models/network_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/network_test.rb -------------------------------------------------------------------------------- /test/models/no_attendance_event_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/no_attendance_event_test.rb -------------------------------------------------------------------------------- /test/models/outreach_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/outreach_test.rb -------------------------------------------------------------------------------- /test/models/payment_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/payment_test.rb -------------------------------------------------------------------------------- /test/models/person_input_group_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/person_input_group_test.rb -------------------------------------------------------------------------------- /test/models/person_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/person_test.rb -------------------------------------------------------------------------------- /test/models/petition_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/petition_test.rb -------------------------------------------------------------------------------- /test/models/phone_input_group_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/phone_input_group_test.rb -------------------------------------------------------------------------------- /test/models/phone_number_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/phone_number_test.rb -------------------------------------------------------------------------------- /test/models/profile_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/profile_test.rb -------------------------------------------------------------------------------- /test/models/query_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/query_test.rb -------------------------------------------------------------------------------- /test/models/question_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/question_test.rb -------------------------------------------------------------------------------- /test/models/recipient_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/recipient_test.rb -------------------------------------------------------------------------------- /test/models/referrer_data_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/referrer_data_test.rb -------------------------------------------------------------------------------- /test/models/reminder_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/reminder_test.rb -------------------------------------------------------------------------------- /test/models/remote_event_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/remote_event_test.rb -------------------------------------------------------------------------------- /test/models/response_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/response_test.rb -------------------------------------------------------------------------------- /test/models/script_question_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/script_question_test.rb -------------------------------------------------------------------------------- /test/models/script_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/script_test.rb -------------------------------------------------------------------------------- /test/models/share_page_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/share_page_test.rb -------------------------------------------------------------------------------- /test/models/signature_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/signature_test.rb -------------------------------------------------------------------------------- /test/models/signup_form_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/signup_form_test.rb -------------------------------------------------------------------------------- /test/models/submission_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/submission_test.rb -------------------------------------------------------------------------------- /test/models/tag_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/tag_test.rb -------------------------------------------------------------------------------- /test/models/target_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/target_test.rb -------------------------------------------------------------------------------- /test/models/ticket_level_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/ticket_level_test.rb -------------------------------------------------------------------------------- /test/models/ticket_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/ticket_test.rb -------------------------------------------------------------------------------- /test/models/twitter_share_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/twitter_share_test.rb -------------------------------------------------------------------------------- /test/models/zipcode_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/models/zipcode_test.rb -------------------------------------------------------------------------------- /test/routes/membership_routes_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/routes/membership_routes_test.rb -------------------------------------------------------------------------------- /test/routes/signup_routes_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/routes/signup_routes_test.rb -------------------------------------------------------------------------------- /test/services/aggregate_error_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/services/aggregate_error_test.rb -------------------------------------------------------------------------------- /test/services/crypto_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/services/crypto_test.rb -------------------------------------------------------------------------------- /test/services/google_api/service_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/services/google_api/service_test.rb -------------------------------------------------------------------------------- /test/services/members/after_create_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/services/members/after_create_test.rb -------------------------------------------------------------------------------- /test/services/migration_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/services/migration_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/yarn.lock -------------------------------------------------------------------------------- /zipcode_import.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/affinityworks/main/HEAD/zipcode_import.rb --------------------------------------------------------------------------------