├── .github ├── dependabot.yml └── workflows │ ├── backend.yml │ ├── frontend.yml │ └── native.yml ├── .gitignore ├── .ruby-gemset ├── .ruby-version ├── .tool-versions ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE.txt ├── Makefile ├── README.md ├── Rakefile ├── app └── components │ └── g-recaptcha.js ├── backend ├── .gitignore ├── .pryrc ├── .rspec ├── .ruby-version ├── .standard_todo.yml ├── .tool-versions ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── Procfile ├── Procfile.local ├── Rakefile ├── app │ ├── assets │ │ ├── config │ │ │ └── manifest.js │ │ ├── images │ │ │ └── .keep │ │ ├── javascripts │ │ │ └── .gitkeep │ │ └── stylesheets │ │ │ └── .gitkeep │ ├── controllers │ │ ├── api │ │ │ └── v1 │ │ │ │ ├── aws_ses_controller.rb │ │ │ │ ├── chart_lists_controller.rb │ │ │ │ ├── charts_controller.rb │ │ │ │ ├── charts_pattern_controller.rb │ │ │ │ ├── checkins_controller.rb │ │ │ │ ├── comments_controller.rb │ │ │ │ ├── conditions_controller.rb │ │ │ │ ├── countries_controller.rb │ │ │ │ ├── data_export_schedules_controller.rb │ │ │ │ ├── day_habits_controller.rb │ │ │ │ ├── discourses_controller.rb │ │ │ │ ├── education_levels_controller.rb │ │ │ │ ├── ethnicities_controller.rb │ │ │ │ ├── foods_controller.rb │ │ │ │ ├── harvey_bradshaw_indices_controller.rb │ │ │ │ ├── invitations_controller.rb │ │ │ │ ├── notifications_controller.rb │ │ │ │ ├── omniauth_callbacks_controller.rb │ │ │ │ ├── oracle_requests_controller.rb │ │ │ │ ├── passwords_controller.rb │ │ │ │ ├── patterns_controller.rb │ │ │ │ ├── postables_controller.rb │ │ │ │ ├── posts_controller.rb │ │ │ │ ├── profiles_controller.rb │ │ │ │ ├── promotion_rates_controller.rb │ │ │ │ ├── pushers_controller.rb │ │ │ │ ├── reactions_controller.rb │ │ │ │ ├── registrations_controller.rb │ │ │ │ ├── searches_controller.rb │ │ │ │ ├── sessions_controller.rb │ │ │ │ ├── sexes_controller.rb │ │ │ │ ├── symptoms_controller.rb │ │ │ │ ├── tags_controller.rb │ │ │ │ ├── topic_followings_controller.rb │ │ │ │ ├── trackings_controller.rb │ │ │ │ ├── treatments_controller.rb │ │ │ │ ├── unsubscribes_controller.rb │ │ │ │ ├── users_controller.rb │ │ │ │ └── weathers_controller.rb │ │ ├── application_controller.rb │ │ └── concerns │ │ │ ├── .keep │ │ │ └── exception_logger.rb │ ├── extenders │ │ ├── pattern_extender.rb │ │ └── post_extender.rb │ ├── jobs │ │ ├── application_job.rb │ │ ├── checkin_reminder_job.rb │ │ ├── data_export_job.rb │ │ ├── discussion_mention.rb │ │ ├── email_reject_dispatcher.rb │ │ ├── email_reject_job.rb │ │ ├── group_notifiers_per_user.rb │ │ ├── group_top_posts_job.rb │ │ ├── hello_world_job.rb │ │ ├── merge_trackables │ │ │ ├── checkin_trackables.rb │ │ │ ├── dispatcher.rb │ │ │ ├── pattern_includes.rb │ │ │ ├── post_trackables.rb │ │ │ ├── remove_duplicates.rb │ │ │ ├── topic_following.rb │ │ │ ├── trackable_usages.rb │ │ │ ├── trackings.rb │ │ │ └── user_trackable_association.rb │ │ ├── notes_export_job.rb │ │ ├── notification_dispatcher.rb │ │ ├── position_reference_job.rb │ │ ├── same_trackables_job.rb │ │ ├── switch_trackable_visibility.rb │ │ ├── top_posts_mailer_dispatcher.rb │ │ ├── update_checkin_reminders.rb │ │ └── update_post_counters_job.rb │ ├── mailers │ │ ├── application_mailer.rb │ │ ├── checkin_reminder_mailer.rb │ │ ├── notifications_mailer.rb │ │ ├── promotion_rate │ │ │ ├── low_rate_mailer.rb │ │ │ └── statistic_mailer.rb │ │ ├── top_posts_mailer.rb │ │ └── user_data_mailer.rb │ ├── models │ │ ├── ability.rb │ │ ├── application_record.rb │ │ ├── chart.rb │ │ ├── checkin.rb │ │ ├── checkin │ │ │ ├── fiveable.rb │ │ │ └── trackable.rb │ │ ├── comment.rb │ │ ├── concerns │ │ │ ├── authenticatable.rb │ │ │ ├── topicable.rb │ │ │ └── usernameable.rb │ │ ├── condition.rb │ │ ├── day_habit.rb │ │ ├── dose.rb │ │ ├── education_level.rb │ │ ├── ethnicity.rb │ │ ├── feedback.rb │ │ ├── food.rb │ │ ├── harvey_bradshaw_index.rb │ │ ├── invitation.rb │ │ ├── notification.rb │ │ ├── oracle_request.rb │ │ ├── pattern.rb │ │ ├── position.rb │ │ ├── post.rb │ │ ├── postable.rb │ │ ├── profile.rb │ │ ├── promotion_rate.rb │ │ ├── ranked_enum.rb │ │ ├── reaction.rb │ │ ├── registration.rb │ │ ├── search.rb │ │ ├── search │ │ │ ├── for_dose.rb │ │ │ ├── for_food.rb │ │ │ └── for_topic.rb │ │ ├── sex.rb │ │ ├── symptom.rb │ │ ├── tag.rb │ │ ├── topic_following.rb │ │ ├── trackable_usage.rb │ │ ├── tracking.rb │ │ ├── treatment.rb │ │ ├── user.rb │ │ ├── user_condition.rb │ │ ├── user_food.rb │ │ ├── user_symptom.rb │ │ ├── user_tag.rb │ │ ├── user_treatment.rb │ │ └── weather.rb │ ├── serializers │ │ ├── api │ │ │ └── v1 │ │ │ │ ├── chart_serializer.rb │ │ │ │ ├── checkin_condition_serializer.rb │ │ │ │ ├── checkin_serializer.rb │ │ │ │ ├── checkin_symptom_serializer.rb │ │ │ │ ├── checkin_trackable_serializer.rb │ │ │ │ ├── checkin_treatment_serializer.rb │ │ │ │ ├── comment_serializer.rb │ │ │ │ ├── concerns.rb │ │ │ │ ├── concerns │ │ │ │ ├── notificatable.rb │ │ │ │ ├── reaction_relatable.rb │ │ │ │ └── topic_serializable.rb │ │ │ │ ├── condition_serializer.rb │ │ │ │ ├── country_serializer.rb │ │ │ │ ├── day_habit_serializer.rb │ │ │ │ ├── dose_serializer.rb │ │ │ │ ├── education_level_serializer.rb │ │ │ │ ├── ethnicity_serializer.rb │ │ │ │ ├── food_serializer.rb │ │ │ │ ├── harvey_bradshaw_index_serializer.rb │ │ │ │ ├── invitation_serializer.rb │ │ │ │ ├── oracle_request_serializer.rb │ │ │ │ ├── oracle_request_with_token_serializer.rb │ │ │ │ ├── password_serializer.rb │ │ │ │ ├── pattern_serializer.rb │ │ │ │ ├── post_serializer.rb │ │ │ │ ├── postable_serializer.rb │ │ │ │ ├── profile_serializer.rb │ │ │ │ ├── promotion_rate_serializer.rb │ │ │ │ ├── ranked_enum_serializer.rb │ │ │ │ ├── reaction_serializer.rb │ │ │ │ ├── registration_serializer.rb │ │ │ │ ├── search_serializer.rb │ │ │ │ ├── searchable_serializer.rb │ │ │ │ ├── session_serializer.rb │ │ │ │ ├── sex_serializer.rb │ │ │ │ ├── symptom_serializer.rb │ │ │ │ ├── tag_serializer.rb │ │ │ │ ├── topic_following_serializer.rb │ │ │ │ ├── trackable_serializer.rb │ │ │ │ ├── tracking_serializer.rb │ │ │ │ ├── treatment_serializer.rb │ │ │ │ ├── user_serializer.rb │ │ │ │ └── weather_serializer.rb │ │ └── application_serializer.rb │ ├── services │ │ ├── additional_posts.rb │ │ ├── chart_list_service.rb │ │ ├── charts_pattern.rb │ │ ├── checkin │ │ │ ├── creator.rb │ │ │ └── updater.rb │ │ ├── collection_retriever.rb │ │ ├── discussion_posts.rb │ │ ├── google │ │ │ └── recaptcha_verifier.rb │ │ ├── pattern_creator.rb │ │ ├── summary_posts.rb │ │ ├── trackable_creator.rb │ │ ├── tracking_destroyer.rb │ │ └── weather_retriever.rb │ └── views │ │ ├── checkin_reminder_mailer │ │ └── remind.html.erb │ │ ├── devise │ │ └── mailer │ │ │ ├── invitation_instructions.html.erb │ │ │ └── reset_password_instructions.html.erb │ │ ├── layouts │ │ └── mailer_layout.html.erb │ │ ├── notifications_mailer │ │ └── notify.html.erb │ │ ├── promotion_rate │ │ ├── low_rate_mailer │ │ │ └── show.html.erb │ │ └── statistic_mailer │ │ │ └── show.html.erb │ │ ├── top_posts_mailer │ │ └── notify.html.erb │ │ └── user_data_mailer │ │ └── trackings_csv.text.erb ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── rspec │ ├── setup │ ├── system_spec │ └── update ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── cronotab.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── 00_app.rb │ │ ├── action_mailer.rb │ │ ├── active_model_serializers.rb │ │ ├── application_controller_renderer.rb │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── bugsnag.rb │ │ ├── content_security_policy.rb │ │ ├── devise.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── mongoid.rb │ │ ├── new_framework_defaults_7_1.rb │ │ ├── permissions_policy.rb │ │ ├── preview_interceptors.rb │ │ ├── rack_timeout.rb │ │ ├── sidekiq.rb │ │ └── tomorrowio_rb.rb │ ├── locales │ │ ├── en.yml │ │ └── it.yml │ ├── mongoid.yml │ ├── puma.rb │ ├── routes.rb │ ├── secrets.yml │ ├── sidekiq.yml │ └── symmetric-encryption.yml ├── db │ ├── migrate │ │ ├── 20160101154821_create_extensions.rb │ │ ├── 20160106154821_create_users.rb │ │ ├── 20160119185831_create_profiles.rb │ │ ├── 20160128112500_create_conditions.rb │ │ ├── 20160128114341_create_user_conditions.rb │ │ ├── 20160128191053_create_symptoms.rb │ │ ├── 20160128191329_create_user_symptoms.rb │ │ ├── 20160128210332_create_trackings.rb │ │ ├── 20160129063945_create_treatments.rb │ │ ├── 20160129064538_create_user_treatments.rb │ │ ├── 20160211105611_create_tags.rb │ │ ├── 20160224141256_add_demographics_to_profiles.rb │ │ ├── 20160404073700_enable_hstore_extension.rb │ │ ├── 20160404073731_add_most_recent_doses_to_profiles.rb │ │ ├── 20160426222232_create_trackable_usages.rb │ │ ├── 20160427055217_add_trackable_usages_counts.rb │ │ ├── 20160608161002_add_screen_name_to_profile.rb │ │ ├── 20160711182546_add_most_recent_positions_to_profiles.rb │ │ ├── 20161206135858_create_foods.rb │ │ ├── 20161214131805_add_long_desc_vector_index_on_food_translations.rb │ │ ├── 20161216123757_create_weathers.rb │ │ ├── 20161230090023_add_pressure_and_temperature_settings_to_profile.rb │ │ ├── 20170413144043_add_beta_tester_to_profile.rb │ │ ├── 20170504065043_create_crono_jobs.rb │ │ ├── 20170508151200_add_notify_to_profiles.rb │ │ ├── 20170509114220_add_notify_token_to_profiles.rb │ │ ├── 20170612160120_add_slug_name_to_profiles.rb │ │ ├── 20170717153650_add_notify_top_posts_to_profile.rb │ │ ├── 20170731083613_add_global_to_foods_and_tags.rb │ │ ├── 20170731123835_add_trackable_usage_count_to_tags.rb │ │ ├── 20170731125044_create_user_tags.rb │ │ ├── 20170801124153_add_trackable_ability_to_foods.rb │ │ ├── 20170817154145_create_positions.rb │ │ ├── 20170818085110_add_position_reference_to_weather.rb │ │ ├── 20170822122800_add_checkin_reminder_to_profiles.rb │ │ └── 20171011142928_add_rejected_type_to_profiles.rb │ ├── schema.rb │ ├── seeds.rb │ ├── seeds │ │ ├── conditions.seeds.rb │ │ ├── development │ │ │ ├── checkins.seeds.rb │ │ │ └── users.seeds.rb │ │ ├── symptoms.seeds.rb │ │ └── treatments.seeds.rb │ └── structure.sql ├── env-example ├── lib │ ├── discourse_client.rb │ ├── flaredown │ │ └── colorable.rb │ ├── pusher_client.rb │ └── tasks │ │ ├── app.rake │ │ ├── encrypt_user_id.rake │ │ ├── hbi_completeness.rake │ │ ├── notifications_scheduler.rake │ │ ├── oneoff.rake │ │ ├── rubocop.rake │ │ ├── spec.rake │ │ ├── trackables.rake │ │ ├── usda.rake │ │ ├── utils.rake │ │ └── weekly_top_posts_scheduler.rake ├── log │ └── .keep ├── package-lock.json ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ ├── images │ │ └── optional_email_img.png │ └── robots.txt ├── spec │ ├── controllers │ │ └── api │ │ │ └── v1 │ │ │ ├── checkins_controller_spec.rb │ │ │ ├── conditions_controller_spec.rb │ │ │ ├── countries_controller_spec.rb │ │ │ ├── day_habits_controller_spec.rb │ │ │ ├── education_levels_controller_spec.rb │ │ │ ├── ethnicities_controller_spec.rb │ │ │ ├── passwords_controller_spec.rb │ │ │ ├── posts_controller_spec.rb │ │ │ ├── profiles_controller_spec.rb │ │ │ ├── registrations_controller_spec.rb │ │ │ ├── searches_controller_spec.rb │ │ │ ├── sexes_controller_spec.rb │ │ │ ├── symptoms_controller_spec.rb │ │ │ ├── tags_controller_spec.rb │ │ │ ├── trackings_controller_spec.rb │ │ │ ├── treatments_controller_spec.rb │ │ │ ├── users_controller_spec.rb │ │ │ └── weathers_controller_spec.rb │ ├── factories │ │ ├── checkin │ │ │ ├── conditions.rb │ │ │ ├── symptoms.rb │ │ │ └── treatments.rb │ │ ├── checkins.rb │ │ ├── comments.rb │ │ ├── conditions.rb │ │ ├── foods.rb │ │ ├── notifications.rb │ │ ├── patterns.rb │ │ ├── posts.rb │ │ ├── profiles.rb │ │ ├── promotion_rate.rb │ │ ├── reactions.rb │ │ ├── symptoms.rb │ │ ├── tags.rb │ │ ├── topic_followings.rb │ │ ├── trackable_usages.rb │ │ ├── trackings.rb │ │ ├── treatments.rb │ │ ├── user_conditions.rb │ │ ├── user_foods.rb │ │ ├── user_symptoms.rb │ │ ├── user_tags.rb │ │ ├── user_treatments.rb │ │ ├── users.rb │ │ └── weathers.rb │ ├── fixtures │ │ ├── usda │ │ │ └── FOOD_DES.txt │ │ └── vcr_cassettes │ │ │ ├── Google_RecaptchaVerifier │ │ │ ├── given_a_non-expired_ReCaptcha_response │ │ │ │ └── returns_true.yml │ │ │ └── given_an_expired_ReCaptcha_response │ │ │ │ └── returns_false.yml │ │ │ └── WeatherRetriever │ │ │ ├── 55403.yml │ │ │ └── the_weather_is_already_cached │ │ │ ├── 1_2_1.yml │ │ │ └── 1_2_2.yml │ ├── jobs │ │ ├── data_export_job_spec.rb │ │ └── switch_trackable_visibility_spec.rb │ ├── mailers │ │ ├── checkin_reminder_mailer_spec.rb │ │ ├── previews │ │ │ ├── checkin_reminder_mailer_preview.rb │ │ │ ├── top_posts_mailer_preview.rb │ │ │ └── user_data_mailer_preview.rb │ │ └── user_data_mailer_spec.rb │ ├── models │ │ ├── ability │ │ │ ├── condition_spec.rb │ │ │ ├── food_spec.rb │ │ │ ├── symptom_spec.rb │ │ │ ├── tag_spec.rb │ │ │ └── treatment_spec.rb │ │ ├── checkin │ │ │ ├── condition_spec.rb │ │ │ ├── symptom_spec.rb │ │ │ └── treatment_spec.rb │ │ ├── checkin_spec.rb │ │ ├── comment_spec.rb │ │ ├── condition_spec.rb │ │ ├── food_spec.rb │ │ ├── harvey_bradshaw_index.rb │ │ ├── notification_spec.rb │ │ ├── position_spec.rb │ │ ├── post_spec.rb │ │ ├── profile_spec.rb │ │ ├── promotion_rate_spec.rb │ │ ├── ranked_enum_spec.rb │ │ ├── reaction_spec.rb │ │ ├── registration_spec.rb │ │ ├── search │ │ │ └── for_dose_spec.rb │ │ ├── search_spec.rb │ │ ├── symptom_spec.rb │ │ ├── tag_spec.rb │ │ ├── topic_following_spec.rb │ │ ├── trackable_usage_spec.rb │ │ ├── tracking_spec.rb │ │ ├── treatment_spec.rb │ │ ├── user_condition_spec.rb │ │ ├── user_spec.rb │ │ ├── user_symptom_spec.rb │ │ ├── user_treatment_spec.rb │ │ └── weather_spec.rb │ ├── rails_helper.rb │ ├── services │ │ ├── charts_pattern_spec.rb │ │ ├── checkin │ │ │ ├── creator_spec.rb │ │ │ └── updater_spec.rb │ │ ├── collection_retriever_spec.rb │ │ ├── google │ │ │ └── recaptcha_verifier_spec.rb │ │ ├── trackable_creator_spec.rb │ │ └── weather_retriever_spec.rb │ ├── spec_helper.rb │ ├── support │ │ ├── activesupport_timehelpers.rb │ │ ├── db_cleaner.rb │ │ ├── devise.rb │ │ ├── factory_bot.rb │ │ ├── foreign_key_checks.rb │ │ ├── response.rb │ │ ├── shared_examples │ │ │ └── fiveable.rb │ │ └── vcr.rb │ ├── system │ │ ├── signup_spec.rb │ │ └── support │ │ │ ├── capybara_config.rb │ │ │ ├── cuprite_config.rb │ │ │ └── frontend_app.rb │ └── system_spec_helper.rb └── tmp │ └── .keep ├── docker-compose.yml ├── frontend ├── .bowerrc ├── .buildpacks-setup ├── .dockerignore ├── .editorconfig ├── .ember-cli ├── .eslintrc.js ├── .gitignore ├── .npmrc ├── .nvmrc ├── .tool-versions ├── .watchmanconfig ├── Dockerfile ├── README.md ├── app.json ├── app │ ├── adapters │ │ ├── application.js │ │ ├── oracle-request.js │ │ └── reaction.js │ ├── app.js │ ├── authenticators │ │ ├── devise.js │ │ └── facebook.js │ ├── authorizers │ │ └── devise.js │ ├── components │ │ ├── add-reminder.js │ │ ├── add-trackings.js │ │ ├── additional-info.js │ │ ├── at-js-autocomplete.js │ │ ├── birth-date.js │ │ ├── bottom-nav.js │ │ ├── chart-navigation.js │ │ ├── chart-patterns.js │ │ ├── chart │ │ │ ├── g-blank-flat.js │ │ │ ├── g-blank-trackable.js │ │ │ ├── g-flat.js │ │ │ ├── g-hbi.js │ │ │ ├── g-ruler.js │ │ │ ├── g-timeline.js │ │ │ ├── g-trackable.js │ │ │ ├── g-weather.js │ │ │ ├── graphable.js │ │ │ └── resizable.js │ │ ├── checkin-dialog.js │ │ ├── checkin-navigation.js │ │ ├── checkin │ │ │ ├── days-nav.js │ │ │ ├── hbi-step.js │ │ │ ├── health-factors-step.js │ │ │ ├── multi-select-edit.js │ │ │ ├── multi-select-group.js │ │ │ ├── note-edit.js │ │ │ ├── promotion-step.js │ │ │ ├── summary-posts.js │ │ │ ├── summary-step.js │ │ │ ├── trackables-step.js │ │ │ ├── tracked-level.js │ │ │ ├── treatment-taker.js │ │ │ └── weather-step.js │ │ ├── custom-pick-a-time.js │ │ ├── data-export-initiator.js │ │ ├── draggable-dropzone.js │ │ ├── draggable-item.js │ │ ├── emoji-menu.js │ │ ├── emoji-reaction.js │ │ ├── emoji-reactions.js │ │ ├── fb-share-btn.js │ │ ├── form-field.js │ │ ├── form-for.js │ │ ├── health-chart.js │ │ ├── health-dashboard.js │ │ ├── invitation-form.js │ │ ├── join-footer.js │ │ ├── journal-entry.js │ │ ├── journal-list.js │ │ ├── label-switch.js │ │ ├── login-form.js │ │ ├── multi-group.js │ │ ├── nav │ │ │ └── discussions-unread.js │ │ ├── navigation-bar.js │ │ ├── navigation-links.js │ │ ├── notifications-form.js │ │ ├── onboarding-dialog.js │ │ ├── onboarding │ │ │ ├── completed-step.js │ │ │ ├── conditions-step.js │ │ │ ├── demographic-step.js │ │ │ ├── personal-step.js │ │ │ ├── reminder-step.js │ │ │ ├── symptoms-step.js │ │ │ └── treatments-step.js │ │ ├── oracle │ │ │ ├── request-form.js │ │ │ ├── result-item.js │ │ │ ├── result-summary.js │ │ │ └── symptom-multiselect.js │ │ ├── password │ │ │ └── expired-token.js │ │ ├── pattern │ │ │ ├── chart-group.js │ │ │ ├── chart-hover.js │ │ │ ├── chart-item.js │ │ │ ├── chart-legend-item.js │ │ │ ├── create-step.js │ │ │ ├── index-step.js │ │ │ ├── initial-step.js │ │ │ └── svg-initial.js │ │ ├── pip-tag.js │ │ ├── posts │ │ │ ├── activity-notification.js │ │ │ ├── post-comment.js │ │ │ ├── post-topics.js │ │ │ ├── profile-picture.js │ │ │ ├── topic-comment.js │ │ │ └── topic-post.js │ │ ├── power-select │ │ │ ├── dropdown-name-desc.js │ │ │ ├── dropdown-trackable-create.js │ │ │ ├── dropdown-trackable.js │ │ │ └── selected-name.js │ │ ├── profile-form.js │ │ ├── promotion-score.js │ │ ├── reset-password-form.js │ │ ├── save-status.js │ │ ├── scroll-to-anchor.js │ │ ├── select-field.js │ │ ├── share-socials.js │ │ ├── shared-patterns │ │ │ └── dialog.js │ │ ├── signup-form.js │ │ ├── step-controls.js │ │ ├── toggle-logo.js │ │ ├── trackables-select.js │ │ ├── tumblr-share.js │ │ ├── twitter-share-btn.js │ │ └── update-password-form.js │ ├── controllers │ │ ├── .gitkeep │ │ ├── delete.js │ │ ├── notifications.js │ │ ├── oracle │ │ │ └── index.js │ │ ├── posts │ │ │ ├── followings.js │ │ │ ├── index.js │ │ │ ├── new.js │ │ │ ├── profile.js │ │ │ ├── show.js │ │ │ └── topic.js │ │ └── settings.js │ ├── helpers │ │ ├── capitalize.js │ │ ├── checkToday.js │ │ ├── hbi-label.js │ │ ├── includes.js │ │ ├── indexPlusOne.js │ │ ├── pip-label.js │ │ ├── pluralize.js │ │ └── truncate-text.js │ ├── index.html │ ├── instance-initializers │ │ ├── charts-visibility.js │ │ ├── drag-drop-polyfill.js │ │ ├── emojis.js │ │ ├── i18n.js │ │ ├── inject-router-into-components.js │ │ ├── inject-session.js │ │ ├── inject-store-into-components.js │ │ ├── selectable-data.js │ │ └── steps.js │ ├── locales │ │ └── en │ │ │ └── translations.js │ ├── mixins │ │ ├── add-meta-tags.js │ │ ├── authenticated-route-mixin.js │ │ ├── back-navigateable.js │ │ ├── body-formatable.js │ │ ├── chart │ │ │ ├── chart-data-retrieve.js │ │ │ └── dates-retriever.js │ │ ├── checkin-by-date.js │ │ ├── colorable.js │ │ ├── fields-by-units.js │ │ ├── history-trackable.js │ │ ├── navbar-searchable.js │ │ ├── nested-destroyable.js │ │ ├── postable-getable.js │ │ ├── searchable-dropdown.js │ │ ├── searchable.js │ │ ├── step-control.js │ │ ├── toggle-header-logo.js │ │ ├── topicable.js │ │ ├── trackables-from-type.js │ │ ├── typeable.js │ │ ├── unauthenticated-route-mixin.js │ │ ├── update-notifications.js │ │ └── user-nameable.js │ ├── models │ │ ├── chart-list.js │ │ ├── chart.js │ │ ├── checkin-condition.js │ │ ├── checkin-symptom.js │ │ ├── checkin-trackable.js │ │ ├── checkin-treatment.js │ │ ├── checkin.js │ │ ├── comment.js │ │ ├── condition.js │ │ ├── country.js │ │ ├── day-habit.js │ │ ├── dose.js │ │ ├── education-level.js │ │ ├── ethnicity.js │ │ ├── food.js │ │ ├── harvey-bradshaw-index.js │ │ ├── invitation.js │ │ ├── notification.js │ │ ├── oracle-request.js │ │ ├── password.js │ │ ├── pattern.js │ │ ├── post.js │ │ ├── postable.js │ │ ├── profile.js │ │ ├── promotion-rate.js │ │ ├── ranked-enum.js │ │ ├── reactable.js │ │ ├── reaction.js │ │ ├── registration.js │ │ ├── search.js │ │ ├── session.js │ │ ├── sex.js │ │ ├── symptom.js │ │ ├── tag.js │ │ ├── topic-following.js │ │ ├── trackable.js │ │ ├── tracking.js │ │ ├── treatment.js │ │ ├── user.js │ │ └── weather.js │ ├── resolver.js │ ├── router.js │ ├── routes │ │ ├── application.js │ │ ├── chart.js │ │ ├── checkin │ │ │ ├── date.js │ │ │ ├── index.js │ │ │ └── show.js │ │ ├── delete.js │ │ ├── discourse-sign-in.js │ │ ├── index.js │ │ ├── invitation.js │ │ ├── login.js │ │ ├── notifications.js │ │ ├── onboarding.js │ │ ├── oracle.js │ │ ├── oracle │ │ │ ├── index.js │ │ │ └── result.js │ │ ├── password.js │ │ ├── password │ │ │ └── update.js │ │ ├── patterns │ │ │ ├── index.js │ │ │ └── shared.js │ │ ├── posts.js │ │ ├── posts │ │ │ ├── followings.js │ │ │ ├── index.js │ │ │ ├── new.js │ │ │ ├── profile.js │ │ │ ├── show.js │ │ │ └── topic.js │ │ ├── settings.js │ │ ├── signup.js │ │ └── unsubscribe.js │ ├── serializers │ │ ├── chart.js │ │ ├── checkin-treatment.js │ │ ├── checkin.js │ │ ├── comment.js │ │ ├── post.js │ │ └── search.js │ ├── services │ │ ├── ajax.js │ │ ├── chart-journal-switcher.js │ │ ├── chart-selected-dates.js │ │ ├── charts-visibility.js │ │ ├── emojis.js │ │ ├── logo-visiability.js │ │ ├── notification.js │ │ ├── notifications.js │ │ ├── patterns-loading.js │ │ ├── pusher.js │ │ ├── pusher │ │ │ ├── connection.js │ │ │ └── subscription.js │ │ ├── route-history.js │ │ ├── selectable-data.js │ │ ├── session.js │ │ ├── steps.js │ │ └── tracking.js │ ├── session-stores │ │ └── application.js │ ├── styles │ │ ├── _badges.scss │ │ ├── _bottom-nav.scss │ │ ├── _btn-group.scss │ │ ├── _progressbar.scss │ │ ├── _userengage.scss │ │ ├── app.scss │ │ ├── bitters │ │ │ ├── _base.scss │ │ │ ├── _buttons.scss │ │ │ ├── _forms.scss │ │ │ ├── _grid-settings.scss │ │ │ ├── _lists.scss │ │ │ ├── _offsets.scss │ │ │ ├── _tables.scss │ │ │ ├── _typography.scss │ │ │ └── _variables.scss │ │ ├── colorable.scss │ │ ├── components │ │ │ ├── add-trackings.scss │ │ │ ├── additional-info.scss │ │ │ ├── chart-navigation.scss │ │ │ ├── checkin-days-nav.scss │ │ │ ├── checkin-navigation.scss │ │ │ ├── checkin │ │ │ │ ├── hbi-step.scss │ │ │ │ ├── multi-select-group.scss │ │ │ │ ├── summary-step.scss │ │ │ │ ├── trackables-step.scss │ │ │ │ ├── tracked-level.scss │ │ │ │ ├── treatment-taker.scss │ │ │ │ └── weather-step.scss │ │ │ ├── discussions.scss │ │ │ ├── emoji-menu.scss │ │ │ ├── emoji-reactions.scss │ │ │ ├── form-field.scss │ │ │ ├── health-chart.scss │ │ │ ├── invitation-form.scss │ │ │ ├── label-switch.scss │ │ │ ├── login-form.scss │ │ │ ├── navigation-bar.scss │ │ │ ├── reset-password-form.scss │ │ │ ├── save-status.scss │ │ │ ├── signup-form.scss │ │ │ ├── step-controls.scss │ │ │ ├── tags-group.scss │ │ │ └── update-password-form.scss │ │ ├── ember-power-select-search.scss │ │ ├── fonts.scss │ │ ├── global.scss │ │ ├── layout.scss │ │ ├── mixins.scss │ │ ├── pace-theme-minimal.scss │ │ ├── spinner.scss │ │ └── variables.scss │ ├── templates │ │ ├── application-loading.hbs │ │ ├── application.hbs │ │ ├── application │ │ │ ├── footer.hbs │ │ │ ├── header.hbs │ │ │ └── three-bounce-spinner.hbs │ │ ├── chart.hbs │ │ ├── checkin │ │ │ ├── date.hbs │ │ │ └── show.hbs │ │ ├── components │ │ │ ├── add-reminder.hbs │ │ │ ├── add-trackings.hbs │ │ │ ├── additional-info.hbs │ │ │ ├── at-js-autocomplete.hbs │ │ │ ├── birth-date.hbs │ │ │ ├── bottom-nav.hbs │ │ │ ├── chart-navigation.hbs │ │ │ ├── chart-patterns.hbs │ │ │ ├── chart │ │ │ │ ├── g-blank-flat.hbs │ │ │ │ ├── g-blank-trackable.hbs │ │ │ │ ├── g-flat.hbs │ │ │ │ ├── g-hbi.hbs │ │ │ │ ├── g-ruler.hbs │ │ │ │ ├── g-timeline.hbs │ │ │ │ ├── g-trackable.hbs │ │ │ │ └── g-weather.hbs │ │ │ ├── checkin-dialog.hbs │ │ │ ├── checkin-navigation.hbs │ │ │ ├── checkin │ │ │ │ ├── -step-header.hbs │ │ │ │ ├── -trackable-item.hbs │ │ │ │ ├── days-nav.hbs │ │ │ │ ├── hbi-step.hbs │ │ │ │ ├── health-factors-step.hbs │ │ │ │ ├── multi-select-edit.hbs │ │ │ │ ├── multi-select-group.hbs │ │ │ │ ├── note-edit.hbs │ │ │ │ ├── promotion-step.hbs │ │ │ │ ├── summary-posts.hbs │ │ │ │ ├── summary-step.hbs │ │ │ │ ├── trackables-step.hbs │ │ │ │ ├── tracked-level.hbs │ │ │ │ ├── treatment-taker.hbs │ │ │ │ └── weather-step.hbs │ │ │ ├── data-export-initiator.hbs │ │ │ ├── draggable-dropzone.hbs │ │ │ ├── draggable-item.hbs │ │ │ ├── emoji-menu.hbs │ │ │ ├── emoji-reaction.hbs │ │ │ ├── emoji-reactions.hbs │ │ │ ├── fb-share-btn.hbs │ │ │ ├── form-field.hbs │ │ │ ├── form-for.hbs │ │ │ ├── health-chart.hbs │ │ │ ├── health-dashboard.hbs │ │ │ ├── invitation-form.hbs │ │ │ ├── join-footer.hbs │ │ │ ├── journal-entry.hbs │ │ │ ├── journal-list.hbs │ │ │ ├── label-switch.hbs │ │ │ ├── login-form.hbs │ │ │ ├── multi-group.hbs │ │ │ ├── nav │ │ │ │ └── discussions-unread.hbs │ │ │ ├── navigation-bar.hbs │ │ │ ├── navigation-links.hbs │ │ │ ├── notifications-form.hbs │ │ │ ├── onboarding-dialog.hbs │ │ │ ├── onboarding │ │ │ │ ├── completed-step.hbs │ │ │ │ ├── conditions-step.hbs │ │ │ │ ├── demographic-step.hbs │ │ │ │ ├── personal-step.hbs │ │ │ │ ├── reminder-step.hbs │ │ │ │ ├── symptoms-step.hbs │ │ │ │ └── treatments-step.hbs │ │ │ ├── oracle │ │ │ │ ├── request-form.hbs │ │ │ │ ├── result-item.hbs │ │ │ │ ├── result-summary.hbs │ │ │ │ └── symptom-multiselect.hbs │ │ │ ├── password │ │ │ │ └── expired-token.hbs │ │ │ ├── pattern │ │ │ │ ├── chart-group.hbs │ │ │ │ ├── chart-hover.hbs │ │ │ │ ├── chart-legend-item.hbs │ │ │ │ ├── create-step.hbs │ │ │ │ ├── index-step.hbs │ │ │ │ ├── initial-step.hbs │ │ │ │ └── svg-initial.hbs │ │ │ ├── pip-tag.hbs │ │ │ ├── posts │ │ │ │ ├── activity-notification.hbs │ │ │ │ ├── post-comment.hbs │ │ │ │ ├── post-topics.hbs │ │ │ │ ├── profile-picture.hbs │ │ │ │ ├── topic-comment.hbs │ │ │ │ └── topic-post.hbs │ │ │ ├── power-select │ │ │ │ ├── dropdown-name-desc.hbs │ │ │ │ ├── dropdown-trackable-create.hbs │ │ │ │ ├── dropdown-trackable.hbs │ │ │ │ └── selected-name.hbs │ │ │ ├── profile-form.hbs │ │ │ ├── promotion-score.hbs │ │ │ ├── reset-password-form.hbs │ │ │ ├── save-status.hbs │ │ │ ├── scroll-to-anchor.hbs │ │ │ ├── share-socials.hbs │ │ │ ├── shared-patterns │ │ │ │ └── dialog.hbs │ │ │ ├── signup-form.hbs │ │ │ ├── step-controls.hbs │ │ │ ├── toggle-logo.hbs │ │ │ ├── trackables-select.hbs │ │ │ ├── tumblr-share.hbs │ │ │ ├── twitter-share-btn.hbs │ │ │ ├── update-password-form.hbs │ │ │ └── view-remove-tracking.hbs │ │ ├── delete.hbs │ │ ├── invitation.hbs │ │ ├── login.hbs │ │ ├── notifications.hbs │ │ ├── onboarding.hbs │ │ ├── oracle.hbs │ │ ├── oracle │ │ │ ├── index.hbs │ │ │ └── result.hbs │ │ ├── password │ │ │ ├── reset.hbs │ │ │ └── update.hbs │ │ ├── patterns │ │ │ ├── index.hbs │ │ │ └── shared.hbs │ │ ├── posts.hbs │ │ ├── posts │ │ │ ├── followings.hbs │ │ │ ├── index.hbs │ │ │ ├── new.hbs │ │ │ ├── profile.hbs │ │ │ ├── show.hbs │ │ │ └── topic.hbs │ │ ├── privacy-policy.hbs │ │ ├── settings.hbs │ │ ├── signup.hbs │ │ ├── terms-of-service.hbs │ │ └── unsubscribe.hbs │ ├── transforms │ │ ├── birthdate.js │ │ ├── raw.js │ │ └── time-zone-name.js │ └── utils │ │ └── i18n │ │ └── missing-message.js ├── bower.json ├── config │ ├── ember-cli-update.json │ ├── environment.js │ └── targets.js ├── ember-cli-build.js ├── lib │ ├── full-story │ │ ├── index.js │ │ └── package.json │ └── heap-analytics │ │ ├── index.js │ │ └── package.json ├── package-lock.json ├── package.json ├── patches │ └── ember-cli+2.18.2.patch ├── public │ ├── assets │ │ ├── checkins.svg │ │ ├── crystal-ball.png │ │ ├── emoji │ │ │ ├── IconsetSmiles.png │ │ │ ├── emoji_spritesheet_0.png │ │ │ ├── emoji_spritesheet_1.png │ │ │ ├── emoji_spritesheet_2.png │ │ │ ├── emoji_spritesheet_3.png │ │ │ └── emoji_spritesheet_4.png │ │ ├── empty.svg │ │ ├── fonts │ │ │ ├── proximanova-regular-webfont.eot │ │ │ ├── proximanova-regular-webfont.svg │ │ │ ├── proximanova-regular-webfont.ttf │ │ │ ├── proximanova-regular-webfont.woff │ │ │ ├── proximanovacond-regular-webfont.eot │ │ │ ├── proximanovacond-regular-webfont.svg │ │ │ ├── proximanovacond-regular-webfont.ttf │ │ │ └── proximanovacond-regular-webfont.woff │ │ ├── logo.svg │ │ ├── menu-icon.svg │ │ ├── nav_icons │ │ │ ├── account_2.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right.svg │ │ │ ├── calendar-icon.svg │ │ │ ├── checkin_2.svg │ │ │ ├── circle.svg │ │ │ ├── close.svg │ │ │ ├── discuss.svg │ │ │ ├── discuss_white.svg │ │ │ ├── discussion-notification.svg │ │ │ ├── discussion-profile.svg │ │ │ ├── discussion-search.svg │ │ │ ├── explore.svg │ │ │ ├── eye.svg │ │ │ ├── history_2.svg │ │ │ ├── history_white.svg │ │ │ ├── left-arrow.svg │ │ │ └── settings-icon.svg │ │ ├── onboarding-success-sm.png │ │ ├── onboarding_success.png │ │ ├── smiley.svg │ │ ├── tag-point.svg │ │ └── weather │ │ │ ├── clear-day.png │ │ │ ├── clear-night.png │ │ │ ├── cloudy.png │ │ │ ├── default.png │ │ │ ├── fog.png │ │ │ ├── partly-cloudy-day.png │ │ │ ├── partly-cloudy-night.png │ │ │ ├── rain.png │ │ │ ├── sleet.png │ │ │ ├── snow.png │ │ │ └── wind.png │ ├── favicon.ico │ └── robots.txt ├── static.json ├── testem.js ├── tests │ ├── helpers │ │ ├── destroy-app.js │ │ ├── module-for-acceptance.js │ │ ├── resolver.js │ │ └── start-app.js │ ├── index.html │ ├── integration │ │ └── components │ │ │ ├── add-reminder-test.js │ │ │ ├── additional-info-test.js │ │ │ ├── at-js-autocomplete-test.js │ │ │ ├── birth-date-test.js │ │ │ ├── checkin-treatment-test.js │ │ │ ├── checkin │ │ │ ├── promotion-step-test.js │ │ │ ├── summary-posts-test.js │ │ │ └── weather-step-test.js │ │ │ ├── custom-pick-a-time-test.js │ │ │ ├── data-export-initiator-test.js │ │ │ ├── emoji-reaction-test.js │ │ │ ├── fb-share-btn-test.js │ │ │ ├── form-for-test.js │ │ │ ├── join-footer-test.js │ │ │ ├── label-switch-test.js │ │ │ ├── nav │ │ │ └── discussions-unread-test.js │ │ │ ├── navigation-bar-test.js │ │ │ ├── navigation-links-test.js │ │ │ ├── notifications-form-test.js │ │ │ ├── onboarding-dialog-test.js │ │ │ ├── onboarding │ │ │ └── reminder-step-test.js │ │ │ ├── posts │ │ │ ├── activity-notification-test.js │ │ │ ├── post-comment-test.js │ │ │ ├── post-topics-test.js │ │ │ ├── profile-picture-test.js │ │ │ ├── topic-comment-test.js │ │ │ └── topic-post-test.js │ │ │ ├── promotion-score-test.js │ │ │ ├── scroll-to-anchor-test.js │ │ │ ├── share-socials-test.js │ │ │ ├── step-controls-test.js │ │ │ ├── toggle-logo-test.js │ │ │ ├── tracked-level-test.js │ │ │ └── twitter-share-btn-test.js │ ├── test-helper.js │ └── unit │ │ ├── adapters │ │ └── reaction-test.js │ │ ├── controllers │ │ ├── notifications-test.js │ │ ├── oracle │ │ │ └── index-test.js │ │ ├── posts │ │ │ ├── followings-test.js │ │ │ ├── index-test.js │ │ │ ├── new-test.js │ │ │ ├── profile-test.js │ │ │ ├── show-test.js │ │ │ └── topic-test.js │ │ └── settings-test.js │ │ ├── helpers │ │ └── includes-test.js │ │ ├── instance-initializers │ │ └── emojis-test.js │ │ ├── mixins │ │ ├── add-meta-tags-test.js │ │ ├── back-navigateable-test.js │ │ ├── body-formatable-test.js │ │ ├── fields-by-units-test.js │ │ ├── history-trackable-test.js │ │ ├── navbar-searchable-test.js │ │ ├── postable-getable-test.js │ │ ├── toggle-header-logo-test.js │ │ ├── topicable-test.js │ │ ├── typeable-test.js │ │ ├── update-notifications-test.js │ │ └── user-nameable-test.js │ │ ├── models │ │ ├── chart-list-test.js │ │ ├── comment-test.js │ │ ├── food-test.js │ │ ├── harvey-bradshaw-index-test.js │ │ ├── notification-test.js │ │ ├── oracle-request-test.js │ │ ├── pattern-test.js │ │ ├── post-test.js │ │ ├── postable-test.js │ │ ├── reactable-test.js │ │ ├── reaction-test.js │ │ ├── session-test.js │ │ ├── topic-following-test.js │ │ ├── user-test.js │ │ └── weather-test.js │ │ ├── routes │ │ ├── notifications-test.js │ │ ├── oracle-test.js │ │ ├── oracle │ │ │ ├── index-test.js │ │ │ └── result-test.js │ │ ├── posts-test.js │ │ ├── posts │ │ │ ├── followings-test.js │ │ │ ├── index-test.js │ │ │ ├── new-test.js │ │ │ ├── profile-test.js │ │ │ ├── show-test.js │ │ │ └── topic-test.js │ │ └── settings-test.js │ │ ├── serializers │ │ └── post-test.js │ │ ├── services │ │ ├── ajax-test.js │ │ ├── emojis-test.js │ │ ├── logo-visiability-test.js │ │ ├── notifications-test.js │ │ └── route-history-test.js │ │ └── transforms │ │ ├── raw-test.js │ │ └── time-zone-name-test.js └── vendor │ └── .gitkeep ├── impact.md ├── native ├── .dockerignore ├── .eslintrc.js ├── .gitignore ├── .nvmrc ├── AppEntry.js ├── Dockerfile ├── app.json ├── assets │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ └── splash.png ├── babel.config.js ├── package-lock.json ├── package.json ├── src │ ├── App.test.tsx │ ├── App.tsx │ ├── Theme.ts │ ├── components │ │ ├── BackButton.tsx │ │ ├── Background.tsx │ │ ├── Button.tsx │ │ ├── Card.tsx │ │ ├── Footer.tsx │ │ ├── Header.tsx │ │ ├── Layout.tsx │ │ ├── Link.tsx │ │ └── TextInput.tsx │ ├── helpers │ │ ├── emailValidator.ts │ │ ├── passwordValidator.ts │ │ └── usernameValidator.ts │ └── screens │ │ ├── CreateAccountScreen.tsx │ │ ├── Dashboard.tsx │ │ ├── LoginScreen.tsx │ │ └── ResetPasswordScreen.tsx ├── tsconfig.json └── webpack.config.js └── script ├── backend ├── ember ├── frontend └── npm /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/backend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/.github/workflows/backend.yml -------------------------------------------------------------------------------- /.github/workflows/frontend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/.github/workflows/frontend.yml -------------------------------------------------------------------------------- /.github/workflows/native.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/.github/workflows/native.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | flaredown 2 | 3 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.2.3 2 | -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/.tool-versions -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/Rakefile -------------------------------------------------------------------------------- /app/components/g-recaptcha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/app/components/g-recaptcha.js -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/.pryrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/.pryrc -------------------------------------------------------------------------------- /backend/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --tag ~type:system 3 | -------------------------------------------------------------------------------- /backend/.ruby-version: -------------------------------------------------------------------------------- 1 | ../.ruby-version -------------------------------------------------------------------------------- /backend/.standard_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/.standard_todo.yml -------------------------------------------------------------------------------- /backend/.tool-versions: -------------------------------------------------------------------------------- 1 | ../.tool-versions -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/Gemfile -------------------------------------------------------------------------------- /backend/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/Gemfile.lock -------------------------------------------------------------------------------- /backend/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/Procfile -------------------------------------------------------------------------------- /backend/Procfile.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/Procfile.local -------------------------------------------------------------------------------- /backend/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/Rakefile -------------------------------------------------------------------------------- /backend/app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/assets/config/manifest.js -------------------------------------------------------------------------------- /backend/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/assets/javascripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/assets/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/controllers/api/v1/aws_ses_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/controllers/api/v1/aws_ses_controller.rb -------------------------------------------------------------------------------- /backend/app/controllers/api/v1/charts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/controllers/api/v1/charts_controller.rb -------------------------------------------------------------------------------- /backend/app/controllers/api/v1/checkins_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/controllers/api/v1/checkins_controller.rb -------------------------------------------------------------------------------- /backend/app/controllers/api/v1/comments_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/controllers/api/v1/comments_controller.rb -------------------------------------------------------------------------------- /backend/app/controllers/api/v1/foods_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/controllers/api/v1/foods_controller.rb -------------------------------------------------------------------------------- /backend/app/controllers/api/v1/patterns_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/controllers/api/v1/patterns_controller.rb -------------------------------------------------------------------------------- /backend/app/controllers/api/v1/posts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/controllers/api/v1/posts_controller.rb -------------------------------------------------------------------------------- /backend/app/controllers/api/v1/profiles_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/controllers/api/v1/profiles_controller.rb -------------------------------------------------------------------------------- /backend/app/controllers/api/v1/pushers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/controllers/api/v1/pushers_controller.rb -------------------------------------------------------------------------------- /backend/app/controllers/api/v1/searches_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/controllers/api/v1/searches_controller.rb -------------------------------------------------------------------------------- /backend/app/controllers/api/v1/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/controllers/api/v1/sessions_controller.rb -------------------------------------------------------------------------------- /backend/app/controllers/api/v1/sexes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/controllers/api/v1/sexes_controller.rb -------------------------------------------------------------------------------- /backend/app/controllers/api/v1/symptoms_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/controllers/api/v1/symptoms_controller.rb -------------------------------------------------------------------------------- /backend/app/controllers/api/v1/tags_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/controllers/api/v1/tags_controller.rb -------------------------------------------------------------------------------- /backend/app/controllers/api/v1/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/controllers/api/v1/users_controller.rb -------------------------------------------------------------------------------- /backend/app/controllers/api/v1/weathers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/controllers/api/v1/weathers_controller.rb -------------------------------------------------------------------------------- /backend/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /backend/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/controllers/concerns/exception_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/controllers/concerns/exception_logger.rb -------------------------------------------------------------------------------- /backend/app/extenders/pattern_extender.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/extenders/pattern_extender.rb -------------------------------------------------------------------------------- /backend/app/extenders/post_extender.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/extenders/post_extender.rb -------------------------------------------------------------------------------- /backend/app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /backend/app/jobs/checkin_reminder_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/jobs/checkin_reminder_job.rb -------------------------------------------------------------------------------- /backend/app/jobs/data_export_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/jobs/data_export_job.rb -------------------------------------------------------------------------------- /backend/app/jobs/discussion_mention.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/jobs/discussion_mention.rb -------------------------------------------------------------------------------- /backend/app/jobs/email_reject_dispatcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/jobs/email_reject_dispatcher.rb -------------------------------------------------------------------------------- /backend/app/jobs/email_reject_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/jobs/email_reject_job.rb -------------------------------------------------------------------------------- /backend/app/jobs/group_notifiers_per_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/jobs/group_notifiers_per_user.rb -------------------------------------------------------------------------------- /backend/app/jobs/group_top_posts_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/jobs/group_top_posts_job.rb -------------------------------------------------------------------------------- /backend/app/jobs/hello_world_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/jobs/hello_world_job.rb -------------------------------------------------------------------------------- /backend/app/jobs/merge_trackables/dispatcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/jobs/merge_trackables/dispatcher.rb -------------------------------------------------------------------------------- /backend/app/jobs/merge_trackables/pattern_includes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/jobs/merge_trackables/pattern_includes.rb -------------------------------------------------------------------------------- /backend/app/jobs/merge_trackables/post_trackables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/jobs/merge_trackables/post_trackables.rb -------------------------------------------------------------------------------- /backend/app/jobs/merge_trackables/topic_following.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/jobs/merge_trackables/topic_following.rb -------------------------------------------------------------------------------- /backend/app/jobs/merge_trackables/trackable_usages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/jobs/merge_trackables/trackable_usages.rb -------------------------------------------------------------------------------- /backend/app/jobs/merge_trackables/trackings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/jobs/merge_trackables/trackings.rb -------------------------------------------------------------------------------- /backend/app/jobs/notes_export_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/jobs/notes_export_job.rb -------------------------------------------------------------------------------- /backend/app/jobs/notification_dispatcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/jobs/notification_dispatcher.rb -------------------------------------------------------------------------------- /backend/app/jobs/position_reference_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/jobs/position_reference_job.rb -------------------------------------------------------------------------------- /backend/app/jobs/same_trackables_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/jobs/same_trackables_job.rb -------------------------------------------------------------------------------- /backend/app/jobs/switch_trackable_visibility.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/jobs/switch_trackable_visibility.rb -------------------------------------------------------------------------------- /backend/app/jobs/top_posts_mailer_dispatcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/jobs/top_posts_mailer_dispatcher.rb -------------------------------------------------------------------------------- /backend/app/jobs/update_checkin_reminders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/jobs/update_checkin_reminders.rb -------------------------------------------------------------------------------- /backend/app/jobs/update_post_counters_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/jobs/update_post_counters_job.rb -------------------------------------------------------------------------------- /backend/app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /backend/app/mailers/checkin_reminder_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/mailers/checkin_reminder_mailer.rb -------------------------------------------------------------------------------- /backend/app/mailers/notifications_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/mailers/notifications_mailer.rb -------------------------------------------------------------------------------- /backend/app/mailers/promotion_rate/low_rate_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/mailers/promotion_rate/low_rate_mailer.rb -------------------------------------------------------------------------------- /backend/app/mailers/top_posts_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/mailers/top_posts_mailer.rb -------------------------------------------------------------------------------- /backend/app/mailers/user_data_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/mailers/user_data_mailer.rb -------------------------------------------------------------------------------- /backend/app/models/ability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/ability.rb -------------------------------------------------------------------------------- /backend/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/application_record.rb -------------------------------------------------------------------------------- /backend/app/models/chart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/chart.rb -------------------------------------------------------------------------------- /backend/app/models/checkin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/checkin.rb -------------------------------------------------------------------------------- /backend/app/models/checkin/fiveable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/checkin/fiveable.rb -------------------------------------------------------------------------------- /backend/app/models/checkin/trackable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/checkin/trackable.rb -------------------------------------------------------------------------------- /backend/app/models/comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/comment.rb -------------------------------------------------------------------------------- /backend/app/models/concerns/authenticatable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/concerns/authenticatable.rb -------------------------------------------------------------------------------- /backend/app/models/concerns/topicable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/concerns/topicable.rb -------------------------------------------------------------------------------- /backend/app/models/concerns/usernameable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/concerns/usernameable.rb -------------------------------------------------------------------------------- /backend/app/models/condition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/condition.rb -------------------------------------------------------------------------------- /backend/app/models/day_habit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/day_habit.rb -------------------------------------------------------------------------------- /backend/app/models/dose.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/dose.rb -------------------------------------------------------------------------------- /backend/app/models/education_level.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/education_level.rb -------------------------------------------------------------------------------- /backend/app/models/ethnicity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/ethnicity.rb -------------------------------------------------------------------------------- /backend/app/models/feedback.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/feedback.rb -------------------------------------------------------------------------------- /backend/app/models/food.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/food.rb -------------------------------------------------------------------------------- /backend/app/models/harvey_bradshaw_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/harvey_bradshaw_index.rb -------------------------------------------------------------------------------- /backend/app/models/invitation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/invitation.rb -------------------------------------------------------------------------------- /backend/app/models/notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/notification.rb -------------------------------------------------------------------------------- /backend/app/models/oracle_request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/oracle_request.rb -------------------------------------------------------------------------------- /backend/app/models/pattern.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/pattern.rb -------------------------------------------------------------------------------- /backend/app/models/position.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/position.rb -------------------------------------------------------------------------------- /backend/app/models/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/post.rb -------------------------------------------------------------------------------- /backend/app/models/postable.rb: -------------------------------------------------------------------------------- 1 | class Postable 2 | include Mongoid::Document 3 | end 4 | -------------------------------------------------------------------------------- /backend/app/models/profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/profile.rb -------------------------------------------------------------------------------- /backend/app/models/promotion_rate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/promotion_rate.rb -------------------------------------------------------------------------------- /backend/app/models/ranked_enum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/ranked_enum.rb -------------------------------------------------------------------------------- /backend/app/models/reaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/reaction.rb -------------------------------------------------------------------------------- /backend/app/models/registration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/registration.rb -------------------------------------------------------------------------------- /backend/app/models/search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/search.rb -------------------------------------------------------------------------------- /backend/app/models/search/for_dose.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/search/for_dose.rb -------------------------------------------------------------------------------- /backend/app/models/search/for_food.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/search/for_food.rb -------------------------------------------------------------------------------- /backend/app/models/search/for_topic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/search/for_topic.rb -------------------------------------------------------------------------------- /backend/app/models/sex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/sex.rb -------------------------------------------------------------------------------- /backend/app/models/symptom.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/symptom.rb -------------------------------------------------------------------------------- /backend/app/models/tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/tag.rb -------------------------------------------------------------------------------- /backend/app/models/topic_following.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/topic_following.rb -------------------------------------------------------------------------------- /backend/app/models/trackable_usage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/trackable_usage.rb -------------------------------------------------------------------------------- /backend/app/models/tracking.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/tracking.rb -------------------------------------------------------------------------------- /backend/app/models/treatment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/treatment.rb -------------------------------------------------------------------------------- /backend/app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/user.rb -------------------------------------------------------------------------------- /backend/app/models/user_condition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/user_condition.rb -------------------------------------------------------------------------------- /backend/app/models/user_food.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/user_food.rb -------------------------------------------------------------------------------- /backend/app/models/user_symptom.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/user_symptom.rb -------------------------------------------------------------------------------- /backend/app/models/user_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/user_tag.rb -------------------------------------------------------------------------------- /backend/app/models/user_treatment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/user_treatment.rb -------------------------------------------------------------------------------- /backend/app/models/weather.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/models/weather.rb -------------------------------------------------------------------------------- /backend/app/serializers/api/v1/chart_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/serializers/api/v1/chart_serializer.rb -------------------------------------------------------------------------------- /backend/app/serializers/api/v1/checkin_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/serializers/api/v1/checkin_serializer.rb -------------------------------------------------------------------------------- /backend/app/serializers/api/v1/comment_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/serializers/api/v1/comment_serializer.rb -------------------------------------------------------------------------------- /backend/app/serializers/api/v1/concerns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/serializers/api/v1/concerns.rb -------------------------------------------------------------------------------- /backend/app/serializers/api/v1/country_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/serializers/api/v1/country_serializer.rb -------------------------------------------------------------------------------- /backend/app/serializers/api/v1/dose_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/serializers/api/v1/dose_serializer.rb -------------------------------------------------------------------------------- /backend/app/serializers/api/v1/food_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/serializers/api/v1/food_serializer.rb -------------------------------------------------------------------------------- /backend/app/serializers/api/v1/password_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/serializers/api/v1/password_serializer.rb -------------------------------------------------------------------------------- /backend/app/serializers/api/v1/pattern_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/serializers/api/v1/pattern_serializer.rb -------------------------------------------------------------------------------- /backend/app/serializers/api/v1/post_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/serializers/api/v1/post_serializer.rb -------------------------------------------------------------------------------- /backend/app/serializers/api/v1/postable_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/serializers/api/v1/postable_serializer.rb -------------------------------------------------------------------------------- /backend/app/serializers/api/v1/profile_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/serializers/api/v1/profile_serializer.rb -------------------------------------------------------------------------------- /backend/app/serializers/api/v1/reaction_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/serializers/api/v1/reaction_serializer.rb -------------------------------------------------------------------------------- /backend/app/serializers/api/v1/search_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/serializers/api/v1/search_serializer.rb -------------------------------------------------------------------------------- /backend/app/serializers/api/v1/session_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/serializers/api/v1/session_serializer.rb -------------------------------------------------------------------------------- /backend/app/serializers/api/v1/sex_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/serializers/api/v1/sex_serializer.rb -------------------------------------------------------------------------------- /backend/app/serializers/api/v1/symptom_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/serializers/api/v1/symptom_serializer.rb -------------------------------------------------------------------------------- /backend/app/serializers/api/v1/tag_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/serializers/api/v1/tag_serializer.rb -------------------------------------------------------------------------------- /backend/app/serializers/api/v1/tracking_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/serializers/api/v1/tracking_serializer.rb -------------------------------------------------------------------------------- /backend/app/serializers/api/v1/user_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/serializers/api/v1/user_serializer.rb -------------------------------------------------------------------------------- /backend/app/serializers/api/v1/weather_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/serializers/api/v1/weather_serializer.rb -------------------------------------------------------------------------------- /backend/app/serializers/application_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/serializers/application_serializer.rb -------------------------------------------------------------------------------- /backend/app/services/additional_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/services/additional_posts.rb -------------------------------------------------------------------------------- /backend/app/services/chart_list_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/services/chart_list_service.rb -------------------------------------------------------------------------------- /backend/app/services/charts_pattern.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/services/charts_pattern.rb -------------------------------------------------------------------------------- /backend/app/services/checkin/creator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/services/checkin/creator.rb -------------------------------------------------------------------------------- /backend/app/services/checkin/updater.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/services/checkin/updater.rb -------------------------------------------------------------------------------- /backend/app/services/collection_retriever.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/services/collection_retriever.rb -------------------------------------------------------------------------------- /backend/app/services/discussion_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/services/discussion_posts.rb -------------------------------------------------------------------------------- /backend/app/services/google/recaptcha_verifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/services/google/recaptcha_verifier.rb -------------------------------------------------------------------------------- /backend/app/services/pattern_creator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/services/pattern_creator.rb -------------------------------------------------------------------------------- /backend/app/services/summary_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/services/summary_posts.rb -------------------------------------------------------------------------------- /backend/app/services/trackable_creator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/services/trackable_creator.rb -------------------------------------------------------------------------------- /backend/app/services/tracking_destroyer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/services/tracking_destroyer.rb -------------------------------------------------------------------------------- /backend/app/services/weather_retriever.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/services/weather_retriever.rb -------------------------------------------------------------------------------- /backend/app/views/layouts/mailer_layout.html.erb: -------------------------------------------------------------------------------- 1 | <%= yield :body %> 2 | -------------------------------------------------------------------------------- /backend/app/views/top_posts_mailer/notify.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/app/views/top_posts_mailer/notify.html.erb -------------------------------------------------------------------------------- /backend/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/bin/bundle -------------------------------------------------------------------------------- /backend/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/bin/rails -------------------------------------------------------------------------------- /backend/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/bin/rake -------------------------------------------------------------------------------- /backend/bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/bin/rspec -------------------------------------------------------------------------------- /backend/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/bin/setup -------------------------------------------------------------------------------- /backend/bin/system_spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/bin/system_spec -------------------------------------------------------------------------------- /backend/bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/bin/update -------------------------------------------------------------------------------- /backend/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/config.ru -------------------------------------------------------------------------------- /backend/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/config/application.rb -------------------------------------------------------------------------------- /backend/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/config/boot.rb -------------------------------------------------------------------------------- /backend/config/cronotab.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/config/cronotab.rb -------------------------------------------------------------------------------- /backend/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/config/database.yml -------------------------------------------------------------------------------- /backend/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/config/environment.rb -------------------------------------------------------------------------------- /backend/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/config/environments/development.rb -------------------------------------------------------------------------------- /backend/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/config/environments/production.rb -------------------------------------------------------------------------------- /backend/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/config/environments/test.rb -------------------------------------------------------------------------------- /backend/config/initializers/00_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/config/initializers/00_app.rb -------------------------------------------------------------------------------- /backend/config/initializers/action_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/config/initializers/action_mailer.rb -------------------------------------------------------------------------------- /backend/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/config/initializers/assets.rb -------------------------------------------------------------------------------- /backend/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /backend/config/initializers/bugsnag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/config/initializers/bugsnag.rb -------------------------------------------------------------------------------- /backend/config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/config/initializers/devise.rb -------------------------------------------------------------------------------- /backend/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/config/initializers/inflections.rb -------------------------------------------------------------------------------- /backend/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /backend/config/initializers/mongoid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/config/initializers/mongoid.rb -------------------------------------------------------------------------------- /backend/config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /backend/config/initializers/preview_interceptors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/config/initializers/preview_interceptors.rb -------------------------------------------------------------------------------- /backend/config/initializers/rack_timeout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/config/initializers/rack_timeout.rb -------------------------------------------------------------------------------- /backend/config/initializers/sidekiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/config/initializers/sidekiq.rb -------------------------------------------------------------------------------- /backend/config/initializers/tomorrowio_rb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/config/initializers/tomorrowio_rb.rb -------------------------------------------------------------------------------- /backend/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/config/locales/en.yml -------------------------------------------------------------------------------- /backend/config/locales/it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/config/locales/it.yml -------------------------------------------------------------------------------- /backend/config/mongoid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/config/mongoid.yml -------------------------------------------------------------------------------- /backend/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/config/puma.rb -------------------------------------------------------------------------------- /backend/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/config/routes.rb -------------------------------------------------------------------------------- /backend/config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/config/secrets.yml -------------------------------------------------------------------------------- /backend/config/sidekiq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/config/sidekiq.yml -------------------------------------------------------------------------------- /backend/config/symmetric-encryption.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/config/symmetric-encryption.yml -------------------------------------------------------------------------------- /backend/db/migrate/20160106154821_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/db/migrate/20160106154821_create_users.rb -------------------------------------------------------------------------------- /backend/db/migrate/20160119185831_create_profiles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/db/migrate/20160119185831_create_profiles.rb -------------------------------------------------------------------------------- /backend/db/migrate/20160128191053_create_symptoms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/db/migrate/20160128191053_create_symptoms.rb -------------------------------------------------------------------------------- /backend/db/migrate/20160128210332_create_trackings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/db/migrate/20160128210332_create_trackings.rb -------------------------------------------------------------------------------- /backend/db/migrate/20160211105611_create_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/db/migrate/20160211105611_create_tags.rb -------------------------------------------------------------------------------- /backend/db/migrate/20161206135858_create_foods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/db/migrate/20161206135858_create_foods.rb -------------------------------------------------------------------------------- /backend/db/migrate/20161216123757_create_weathers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/db/migrate/20161216123757_create_weathers.rb -------------------------------------------------------------------------------- /backend/db/migrate/20170731125044_create_user_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/db/migrate/20170731125044_create_user_tags.rb -------------------------------------------------------------------------------- /backend/db/migrate/20170817154145_create_positions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/db/migrate/20170817154145_create_positions.rb -------------------------------------------------------------------------------- /backend/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/db/schema.rb -------------------------------------------------------------------------------- /backend/db/seeds.rb: -------------------------------------------------------------------------------- 1 | Rake::Task["usda:load"].invoke 2 | -------------------------------------------------------------------------------- /backend/db/seeds/conditions.seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/db/seeds/conditions.seeds.rb -------------------------------------------------------------------------------- /backend/db/seeds/development/checkins.seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/db/seeds/development/checkins.seeds.rb -------------------------------------------------------------------------------- /backend/db/seeds/development/users.seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/db/seeds/development/users.seeds.rb -------------------------------------------------------------------------------- /backend/db/seeds/symptoms.seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/db/seeds/symptoms.seeds.rb -------------------------------------------------------------------------------- /backend/db/seeds/treatments.seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/db/seeds/treatments.seeds.rb -------------------------------------------------------------------------------- /backend/db/structure.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/db/structure.sql -------------------------------------------------------------------------------- /backend/env-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/env-example -------------------------------------------------------------------------------- /backend/lib/discourse_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/lib/discourse_client.rb -------------------------------------------------------------------------------- /backend/lib/flaredown/colorable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/lib/flaredown/colorable.rb -------------------------------------------------------------------------------- /backend/lib/pusher_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/lib/pusher_client.rb -------------------------------------------------------------------------------- /backend/lib/tasks/app.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/lib/tasks/app.rake -------------------------------------------------------------------------------- /backend/lib/tasks/encrypt_user_id.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/lib/tasks/encrypt_user_id.rake -------------------------------------------------------------------------------- /backend/lib/tasks/hbi_completeness.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/lib/tasks/hbi_completeness.rake -------------------------------------------------------------------------------- /backend/lib/tasks/notifications_scheduler.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/lib/tasks/notifications_scheduler.rake -------------------------------------------------------------------------------- /backend/lib/tasks/oneoff.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/lib/tasks/oneoff.rake -------------------------------------------------------------------------------- /backend/lib/tasks/rubocop.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/lib/tasks/rubocop.rake -------------------------------------------------------------------------------- /backend/lib/tasks/spec.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/lib/tasks/spec.rake -------------------------------------------------------------------------------- /backend/lib/tasks/trackables.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/lib/tasks/trackables.rake -------------------------------------------------------------------------------- /backend/lib/tasks/usda.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/lib/tasks/usda.rake -------------------------------------------------------------------------------- /backend/lib/tasks/utils.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/lib/tasks/utils.rake -------------------------------------------------------------------------------- /backend/lib/tasks/weekly_top_posts_scheduler.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/lib/tasks/weekly_top_posts_scheduler.rake -------------------------------------------------------------------------------- /backend/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "lockfileVersion": 1 3 | } 4 | -------------------------------------------------------------------------------- /backend/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/public/404.html -------------------------------------------------------------------------------- /backend/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/public/422.html -------------------------------------------------------------------------------- /backend/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/public/500.html -------------------------------------------------------------------------------- /backend/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/public/images/optional_email_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/public/images/optional_email_img.png -------------------------------------------------------------------------------- /backend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/public/robots.txt -------------------------------------------------------------------------------- /backend/spec/factories/checkin/conditions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/factories/checkin/conditions.rb -------------------------------------------------------------------------------- /backend/spec/factories/checkin/symptoms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/factories/checkin/symptoms.rb -------------------------------------------------------------------------------- /backend/spec/factories/checkin/treatments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/factories/checkin/treatments.rb -------------------------------------------------------------------------------- /backend/spec/factories/checkins.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/factories/checkins.rb -------------------------------------------------------------------------------- /backend/spec/factories/comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/factories/comments.rb -------------------------------------------------------------------------------- /backend/spec/factories/conditions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/factories/conditions.rb -------------------------------------------------------------------------------- /backend/spec/factories/foods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/factories/foods.rb -------------------------------------------------------------------------------- /backend/spec/factories/notifications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/factories/notifications.rb -------------------------------------------------------------------------------- /backend/spec/factories/patterns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/factories/patterns.rb -------------------------------------------------------------------------------- /backend/spec/factories/posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/factories/posts.rb -------------------------------------------------------------------------------- /backend/spec/factories/profiles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/factories/profiles.rb -------------------------------------------------------------------------------- /backend/spec/factories/promotion_rate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/factories/promotion_rate.rb -------------------------------------------------------------------------------- /backend/spec/factories/reactions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/factories/reactions.rb -------------------------------------------------------------------------------- /backend/spec/factories/symptoms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/factories/symptoms.rb -------------------------------------------------------------------------------- /backend/spec/factories/tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/factories/tags.rb -------------------------------------------------------------------------------- /backend/spec/factories/topic_followings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/factories/topic_followings.rb -------------------------------------------------------------------------------- /backend/spec/factories/trackable_usages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/factories/trackable_usages.rb -------------------------------------------------------------------------------- /backend/spec/factories/trackings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/factories/trackings.rb -------------------------------------------------------------------------------- /backend/spec/factories/treatments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/factories/treatments.rb -------------------------------------------------------------------------------- /backend/spec/factories/user_conditions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/factories/user_conditions.rb -------------------------------------------------------------------------------- /backend/spec/factories/user_foods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/factories/user_foods.rb -------------------------------------------------------------------------------- /backend/spec/factories/user_symptoms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/factories/user_symptoms.rb -------------------------------------------------------------------------------- /backend/spec/factories/user_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/factories/user_tags.rb -------------------------------------------------------------------------------- /backend/spec/factories/user_treatments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/factories/user_treatments.rb -------------------------------------------------------------------------------- /backend/spec/factories/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/factories/users.rb -------------------------------------------------------------------------------- /backend/spec/factories/weathers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/factories/weathers.rb -------------------------------------------------------------------------------- /backend/spec/fixtures/usda/FOOD_DES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/fixtures/usda/FOOD_DES.txt -------------------------------------------------------------------------------- /backend/spec/jobs/data_export_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/jobs/data_export_job_spec.rb -------------------------------------------------------------------------------- /backend/spec/jobs/switch_trackable_visibility_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/jobs/switch_trackable_visibility_spec.rb -------------------------------------------------------------------------------- /backend/spec/mailers/checkin_reminder_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/mailers/checkin_reminder_mailer_spec.rb -------------------------------------------------------------------------------- /backend/spec/mailers/user_data_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/mailers/user_data_mailer_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/ability/condition_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/ability/condition_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/ability/food_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/ability/food_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/ability/symptom_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/ability/symptom_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/ability/tag_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/ability/tag_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/ability/treatment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/ability/treatment_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/checkin/condition_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/checkin/condition_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/checkin/symptom_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/checkin/symptom_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/checkin/treatment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/checkin/treatment_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/checkin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/checkin_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/comment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/comment_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/condition_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/condition_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/food_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/food_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/harvey_bradshaw_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/harvey_bradshaw_index.rb -------------------------------------------------------------------------------- /backend/spec/models/notification_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/notification_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/position_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/position_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/post_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/post_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/profile_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/profile_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/promotion_rate_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/promotion_rate_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/ranked_enum_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/ranked_enum_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/reaction_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/reaction_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/registration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/registration_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/search/for_dose_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/search/for_dose_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/search_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/search_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/symptom_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/symptom_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/tag_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/tag_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/topic_following_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/topic_following_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/trackable_usage_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/trackable_usage_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/tracking_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/tracking_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/treatment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/treatment_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/user_condition_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/user_condition_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/user_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/user_symptom_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/user_symptom_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/user_treatment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/user_treatment_spec.rb -------------------------------------------------------------------------------- /backend/spec/models/weather_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/models/weather_spec.rb -------------------------------------------------------------------------------- /backend/spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/rails_helper.rb -------------------------------------------------------------------------------- /backend/spec/services/charts_pattern_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/services/charts_pattern_spec.rb -------------------------------------------------------------------------------- /backend/spec/services/checkin/creator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/services/checkin/creator_spec.rb -------------------------------------------------------------------------------- /backend/spec/services/checkin/updater_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/services/checkin/updater_spec.rb -------------------------------------------------------------------------------- /backend/spec/services/collection_retriever_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/services/collection_retriever_spec.rb -------------------------------------------------------------------------------- /backend/spec/services/trackable_creator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/services/trackable_creator_spec.rb -------------------------------------------------------------------------------- /backend/spec/services/weather_retriever_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/services/weather_retriever_spec.rb -------------------------------------------------------------------------------- /backend/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/spec_helper.rb -------------------------------------------------------------------------------- /backend/spec/support/activesupport_timehelpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/support/activesupport_timehelpers.rb -------------------------------------------------------------------------------- /backend/spec/support/db_cleaner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/support/db_cleaner.rb -------------------------------------------------------------------------------- /backend/spec/support/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/support/devise.rb -------------------------------------------------------------------------------- /backend/spec/support/factory_bot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/support/factory_bot.rb -------------------------------------------------------------------------------- /backend/spec/support/foreign_key_checks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/support/foreign_key_checks.rb -------------------------------------------------------------------------------- /backend/spec/support/response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/support/response.rb -------------------------------------------------------------------------------- /backend/spec/support/shared_examples/fiveable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/support/shared_examples/fiveable.rb -------------------------------------------------------------------------------- /backend/spec/support/vcr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/support/vcr.rb -------------------------------------------------------------------------------- /backend/spec/system/signup_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/system/signup_spec.rb -------------------------------------------------------------------------------- /backend/spec/system/support/capybara_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/system/support/capybara_config.rb -------------------------------------------------------------------------------- /backend/spec/system/support/cuprite_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/system/support/cuprite_config.rb -------------------------------------------------------------------------------- /backend/spec/system/support/frontend_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/system/support/frontend_app.rb -------------------------------------------------------------------------------- /backend/spec/system_spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/backend/spec/system_spec_helper.rb -------------------------------------------------------------------------------- /backend/tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /frontend/.bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/.bowerrc -------------------------------------------------------------------------------- /frontend/.buildpacks-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/.buildpacks-setup -------------------------------------------------------------------------------- /frontend/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/.dockerignore -------------------------------------------------------------------------------- /frontend/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/.editorconfig -------------------------------------------------------------------------------- /frontend/.ember-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/.ember-cli -------------------------------------------------------------------------------- /frontend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/.eslintrc.js -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /frontend/.nvmrc: -------------------------------------------------------------------------------- 1 | v14.21.3 2 | -------------------------------------------------------------------------------- /frontend/.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 14.21.3 2 | -------------------------------------------------------------------------------- /frontend/.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app.json -------------------------------------------------------------------------------- /frontend/app/adapters/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/adapters/application.js -------------------------------------------------------------------------------- /frontend/app/adapters/oracle-request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/adapters/oracle-request.js -------------------------------------------------------------------------------- /frontend/app/adapters/reaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/adapters/reaction.js -------------------------------------------------------------------------------- /frontend/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/app.js -------------------------------------------------------------------------------- /frontend/app/authenticators/devise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/authenticators/devise.js -------------------------------------------------------------------------------- /frontend/app/authenticators/facebook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/authenticators/facebook.js -------------------------------------------------------------------------------- /frontend/app/authorizers/devise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/authorizers/devise.js -------------------------------------------------------------------------------- /frontend/app/components/add-reminder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/add-reminder.js -------------------------------------------------------------------------------- /frontend/app/components/add-trackings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/add-trackings.js -------------------------------------------------------------------------------- /frontend/app/components/additional-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/additional-info.js -------------------------------------------------------------------------------- /frontend/app/components/at-js-autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/at-js-autocomplete.js -------------------------------------------------------------------------------- /frontend/app/components/birth-date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/birth-date.js -------------------------------------------------------------------------------- /frontend/app/components/bottom-nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/bottom-nav.js -------------------------------------------------------------------------------- /frontend/app/components/chart-navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/chart-navigation.js -------------------------------------------------------------------------------- /frontend/app/components/chart-patterns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/chart-patterns.js -------------------------------------------------------------------------------- /frontend/app/components/chart/g-blank-flat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/chart/g-blank-flat.js -------------------------------------------------------------------------------- /frontend/app/components/chart/g-blank-trackable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/chart/g-blank-trackable.js -------------------------------------------------------------------------------- /frontend/app/components/chart/g-flat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/chart/g-flat.js -------------------------------------------------------------------------------- /frontend/app/components/chart/g-hbi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/chart/g-hbi.js -------------------------------------------------------------------------------- /frontend/app/components/chart/g-ruler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/chart/g-ruler.js -------------------------------------------------------------------------------- /frontend/app/components/chart/g-timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/chart/g-timeline.js -------------------------------------------------------------------------------- /frontend/app/components/chart/g-trackable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/chart/g-trackable.js -------------------------------------------------------------------------------- /frontend/app/components/chart/g-weather.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/chart/g-weather.js -------------------------------------------------------------------------------- /frontend/app/components/chart/graphable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/chart/graphable.js -------------------------------------------------------------------------------- /frontend/app/components/chart/resizable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/chart/resizable.js -------------------------------------------------------------------------------- /frontend/app/components/checkin-dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/checkin-dialog.js -------------------------------------------------------------------------------- /frontend/app/components/checkin-navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/checkin-navigation.js -------------------------------------------------------------------------------- /frontend/app/components/checkin/days-nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/checkin/days-nav.js -------------------------------------------------------------------------------- /frontend/app/components/checkin/hbi-step.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/checkin/hbi-step.js -------------------------------------------------------------------------------- /frontend/app/components/checkin/multi-select-edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/checkin/multi-select-edit.js -------------------------------------------------------------------------------- /frontend/app/components/checkin/multi-select-group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/checkin/multi-select-group.js -------------------------------------------------------------------------------- /frontend/app/components/checkin/note-edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/checkin/note-edit.js -------------------------------------------------------------------------------- /frontend/app/components/checkin/promotion-step.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/checkin/promotion-step.js -------------------------------------------------------------------------------- /frontend/app/components/checkin/summary-posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/checkin/summary-posts.js -------------------------------------------------------------------------------- /frontend/app/components/checkin/summary-step.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/checkin/summary-step.js -------------------------------------------------------------------------------- /frontend/app/components/checkin/trackables-step.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/checkin/trackables-step.js -------------------------------------------------------------------------------- /frontend/app/components/checkin/tracked-level.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/checkin/tracked-level.js -------------------------------------------------------------------------------- /frontend/app/components/checkin/treatment-taker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/checkin/treatment-taker.js -------------------------------------------------------------------------------- /frontend/app/components/checkin/weather-step.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/checkin/weather-step.js -------------------------------------------------------------------------------- /frontend/app/components/custom-pick-a-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/custom-pick-a-time.js -------------------------------------------------------------------------------- /frontend/app/components/data-export-initiator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/data-export-initiator.js -------------------------------------------------------------------------------- /frontend/app/components/draggable-dropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/draggable-dropzone.js -------------------------------------------------------------------------------- /frontend/app/components/draggable-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/draggable-item.js -------------------------------------------------------------------------------- /frontend/app/components/emoji-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/emoji-menu.js -------------------------------------------------------------------------------- /frontend/app/components/emoji-reaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/emoji-reaction.js -------------------------------------------------------------------------------- /frontend/app/components/emoji-reactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/emoji-reactions.js -------------------------------------------------------------------------------- /frontend/app/components/fb-share-btn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/fb-share-btn.js -------------------------------------------------------------------------------- /frontend/app/components/form-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/form-field.js -------------------------------------------------------------------------------- /frontend/app/components/form-for.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/form-for.js -------------------------------------------------------------------------------- /frontend/app/components/health-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/health-chart.js -------------------------------------------------------------------------------- /frontend/app/components/health-dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/health-dashboard.js -------------------------------------------------------------------------------- /frontend/app/components/invitation-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/invitation-form.js -------------------------------------------------------------------------------- /frontend/app/components/join-footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/join-footer.js -------------------------------------------------------------------------------- /frontend/app/components/journal-entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/journal-entry.js -------------------------------------------------------------------------------- /frontend/app/components/journal-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/journal-list.js -------------------------------------------------------------------------------- /frontend/app/components/label-switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/label-switch.js -------------------------------------------------------------------------------- /frontend/app/components/login-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/login-form.js -------------------------------------------------------------------------------- /frontend/app/components/multi-group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/multi-group.js -------------------------------------------------------------------------------- /frontend/app/components/nav/discussions-unread.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/nav/discussions-unread.js -------------------------------------------------------------------------------- /frontend/app/components/navigation-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/navigation-bar.js -------------------------------------------------------------------------------- /frontend/app/components/navigation-links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/navigation-links.js -------------------------------------------------------------------------------- /frontend/app/components/notifications-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/notifications-form.js -------------------------------------------------------------------------------- /frontend/app/components/onboarding-dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/onboarding-dialog.js -------------------------------------------------------------------------------- /frontend/app/components/onboarding/completed-step.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/onboarding/completed-step.js -------------------------------------------------------------------------------- /frontend/app/components/onboarding/conditions-step.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/onboarding/conditions-step.js -------------------------------------------------------------------------------- /frontend/app/components/onboarding/personal-step.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/onboarding/personal-step.js -------------------------------------------------------------------------------- /frontend/app/components/oracle/request-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/oracle/request-form.js -------------------------------------------------------------------------------- /frontend/app/components/oracle/result-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/oracle/result-item.js -------------------------------------------------------------------------------- /frontend/app/components/oracle/result-summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/oracle/result-summary.js -------------------------------------------------------------------------------- /frontend/app/components/password/expired-token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/password/expired-token.js -------------------------------------------------------------------------------- /frontend/app/components/pattern/chart-group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/pattern/chart-group.js -------------------------------------------------------------------------------- /frontend/app/components/pattern/chart-hover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/pattern/chart-hover.js -------------------------------------------------------------------------------- /frontend/app/components/pattern/chart-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/pattern/chart-item.js -------------------------------------------------------------------------------- /frontend/app/components/pattern/create-step.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/pattern/create-step.js -------------------------------------------------------------------------------- /frontend/app/components/pattern/index-step.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/pattern/index-step.js -------------------------------------------------------------------------------- /frontend/app/components/pattern/initial-step.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/pattern/initial-step.js -------------------------------------------------------------------------------- /frontend/app/components/pattern/svg-initial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/pattern/svg-initial.js -------------------------------------------------------------------------------- /frontend/app/components/pip-tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/pip-tag.js -------------------------------------------------------------------------------- /frontend/app/components/posts/post-comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/posts/post-comment.js -------------------------------------------------------------------------------- /frontend/app/components/posts/post-topics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/posts/post-topics.js -------------------------------------------------------------------------------- /frontend/app/components/posts/profile-picture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/posts/profile-picture.js -------------------------------------------------------------------------------- /frontend/app/components/posts/topic-comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/posts/topic-comment.js -------------------------------------------------------------------------------- /frontend/app/components/posts/topic-post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/posts/topic-post.js -------------------------------------------------------------------------------- /frontend/app/components/profile-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/profile-form.js -------------------------------------------------------------------------------- /frontend/app/components/promotion-score.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/promotion-score.js -------------------------------------------------------------------------------- /frontend/app/components/reset-password-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/reset-password-form.js -------------------------------------------------------------------------------- /frontend/app/components/save-status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/save-status.js -------------------------------------------------------------------------------- /frontend/app/components/scroll-to-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/scroll-to-anchor.js -------------------------------------------------------------------------------- /frontend/app/components/select-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/select-field.js -------------------------------------------------------------------------------- /frontend/app/components/share-socials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/share-socials.js -------------------------------------------------------------------------------- /frontend/app/components/shared-patterns/dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/shared-patterns/dialog.js -------------------------------------------------------------------------------- /frontend/app/components/signup-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/signup-form.js -------------------------------------------------------------------------------- /frontend/app/components/step-controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/step-controls.js -------------------------------------------------------------------------------- /frontend/app/components/toggle-logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/toggle-logo.js -------------------------------------------------------------------------------- /frontend/app/components/trackables-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/trackables-select.js -------------------------------------------------------------------------------- /frontend/app/components/tumblr-share.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/tumblr-share.js -------------------------------------------------------------------------------- /frontend/app/components/twitter-share-btn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/twitter-share-btn.js -------------------------------------------------------------------------------- /frontend/app/components/update-password-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/components/update-password-form.js -------------------------------------------------------------------------------- /frontend/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/app/controllers/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/controllers/delete.js -------------------------------------------------------------------------------- /frontend/app/controllers/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/controllers/notifications.js -------------------------------------------------------------------------------- /frontend/app/controllers/oracle/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/controllers/oracle/index.js -------------------------------------------------------------------------------- /frontend/app/controllers/posts/followings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/controllers/posts/followings.js -------------------------------------------------------------------------------- /frontend/app/controllers/posts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/controllers/posts/index.js -------------------------------------------------------------------------------- /frontend/app/controllers/posts/new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/controllers/posts/new.js -------------------------------------------------------------------------------- /frontend/app/controllers/posts/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/controllers/posts/profile.js -------------------------------------------------------------------------------- /frontend/app/controllers/posts/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/controllers/posts/show.js -------------------------------------------------------------------------------- /frontend/app/controllers/posts/topic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/controllers/posts/topic.js -------------------------------------------------------------------------------- /frontend/app/controllers/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/controllers/settings.js -------------------------------------------------------------------------------- /frontend/app/helpers/capitalize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/helpers/capitalize.js -------------------------------------------------------------------------------- /frontend/app/helpers/checkToday.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/helpers/checkToday.js -------------------------------------------------------------------------------- /frontend/app/helpers/hbi-label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/helpers/hbi-label.js -------------------------------------------------------------------------------- /frontend/app/helpers/includes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/helpers/includes.js -------------------------------------------------------------------------------- /frontend/app/helpers/indexPlusOne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/helpers/indexPlusOne.js -------------------------------------------------------------------------------- /frontend/app/helpers/pip-label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/helpers/pip-label.js -------------------------------------------------------------------------------- /frontend/app/helpers/pluralize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/helpers/pluralize.js -------------------------------------------------------------------------------- /frontend/app/helpers/truncate-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/helpers/truncate-text.js -------------------------------------------------------------------------------- /frontend/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/index.html -------------------------------------------------------------------------------- /frontend/app/instance-initializers/emojis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/instance-initializers/emojis.js -------------------------------------------------------------------------------- /frontend/app/instance-initializers/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/instance-initializers/i18n.js -------------------------------------------------------------------------------- /frontend/app/instance-initializers/steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/instance-initializers/steps.js -------------------------------------------------------------------------------- /frontend/app/locales/en/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/locales/en/translations.js -------------------------------------------------------------------------------- /frontend/app/mixins/add-meta-tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/mixins/add-meta-tags.js -------------------------------------------------------------------------------- /frontend/app/mixins/authenticated-route-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/mixins/authenticated-route-mixin.js -------------------------------------------------------------------------------- /frontend/app/mixins/back-navigateable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/mixins/back-navigateable.js -------------------------------------------------------------------------------- /frontend/app/mixins/body-formatable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/mixins/body-formatable.js -------------------------------------------------------------------------------- /frontend/app/mixins/chart/chart-data-retrieve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/mixins/chart/chart-data-retrieve.js -------------------------------------------------------------------------------- /frontend/app/mixins/chart/dates-retriever.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/mixins/chart/dates-retriever.js -------------------------------------------------------------------------------- /frontend/app/mixins/checkin-by-date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/mixins/checkin-by-date.js -------------------------------------------------------------------------------- /frontend/app/mixins/colorable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/mixins/colorable.js -------------------------------------------------------------------------------- /frontend/app/mixins/fields-by-units.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/mixins/fields-by-units.js -------------------------------------------------------------------------------- /frontend/app/mixins/history-trackable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/mixins/history-trackable.js -------------------------------------------------------------------------------- /frontend/app/mixins/navbar-searchable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/mixins/navbar-searchable.js -------------------------------------------------------------------------------- /frontend/app/mixins/nested-destroyable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/mixins/nested-destroyable.js -------------------------------------------------------------------------------- /frontend/app/mixins/postable-getable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/mixins/postable-getable.js -------------------------------------------------------------------------------- /frontend/app/mixins/searchable-dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/mixins/searchable-dropdown.js -------------------------------------------------------------------------------- /frontend/app/mixins/searchable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/mixins/searchable.js -------------------------------------------------------------------------------- /frontend/app/mixins/step-control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/mixins/step-control.js -------------------------------------------------------------------------------- /frontend/app/mixins/toggle-header-logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/mixins/toggle-header-logo.js -------------------------------------------------------------------------------- /frontend/app/mixins/topicable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/mixins/topicable.js -------------------------------------------------------------------------------- /frontend/app/mixins/trackables-from-type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/mixins/trackables-from-type.js -------------------------------------------------------------------------------- /frontend/app/mixins/typeable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/mixins/typeable.js -------------------------------------------------------------------------------- /frontend/app/mixins/unauthenticated-route-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/mixins/unauthenticated-route-mixin.js -------------------------------------------------------------------------------- /frontend/app/mixins/update-notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/mixins/update-notifications.js -------------------------------------------------------------------------------- /frontend/app/mixins/user-nameable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/mixins/user-nameable.js -------------------------------------------------------------------------------- /frontend/app/models/chart-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/chart-list.js -------------------------------------------------------------------------------- /frontend/app/models/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/chart.js -------------------------------------------------------------------------------- /frontend/app/models/checkin-condition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/checkin-condition.js -------------------------------------------------------------------------------- /frontend/app/models/checkin-symptom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/checkin-symptom.js -------------------------------------------------------------------------------- /frontend/app/models/checkin-trackable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/checkin-trackable.js -------------------------------------------------------------------------------- /frontend/app/models/checkin-treatment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/checkin-treatment.js -------------------------------------------------------------------------------- /frontend/app/models/checkin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/checkin.js -------------------------------------------------------------------------------- /frontend/app/models/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/comment.js -------------------------------------------------------------------------------- /frontend/app/models/condition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/condition.js -------------------------------------------------------------------------------- /frontend/app/models/country.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/country.js -------------------------------------------------------------------------------- /frontend/app/models/day-habit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/day-habit.js -------------------------------------------------------------------------------- /frontend/app/models/dose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/dose.js -------------------------------------------------------------------------------- /frontend/app/models/education-level.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/education-level.js -------------------------------------------------------------------------------- /frontend/app/models/ethnicity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/ethnicity.js -------------------------------------------------------------------------------- /frontend/app/models/food.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/food.js -------------------------------------------------------------------------------- /frontend/app/models/harvey-bradshaw-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/harvey-bradshaw-index.js -------------------------------------------------------------------------------- /frontend/app/models/invitation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/invitation.js -------------------------------------------------------------------------------- /frontend/app/models/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/notification.js -------------------------------------------------------------------------------- /frontend/app/models/oracle-request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/oracle-request.js -------------------------------------------------------------------------------- /frontend/app/models/password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/password.js -------------------------------------------------------------------------------- /frontend/app/models/pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/pattern.js -------------------------------------------------------------------------------- /frontend/app/models/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/post.js -------------------------------------------------------------------------------- /frontend/app/models/postable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/postable.js -------------------------------------------------------------------------------- /frontend/app/models/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/profile.js -------------------------------------------------------------------------------- /frontend/app/models/promotion-rate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/promotion-rate.js -------------------------------------------------------------------------------- /frontend/app/models/ranked-enum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/ranked-enum.js -------------------------------------------------------------------------------- /frontend/app/models/reactable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/reactable.js -------------------------------------------------------------------------------- /frontend/app/models/reaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/reaction.js -------------------------------------------------------------------------------- /frontend/app/models/registration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/registration.js -------------------------------------------------------------------------------- /frontend/app/models/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/search.js -------------------------------------------------------------------------------- /frontend/app/models/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/session.js -------------------------------------------------------------------------------- /frontend/app/models/sex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/sex.js -------------------------------------------------------------------------------- /frontend/app/models/symptom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/symptom.js -------------------------------------------------------------------------------- /frontend/app/models/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/tag.js -------------------------------------------------------------------------------- /frontend/app/models/topic-following.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/topic-following.js -------------------------------------------------------------------------------- /frontend/app/models/trackable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/trackable.js -------------------------------------------------------------------------------- /frontend/app/models/tracking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/tracking.js -------------------------------------------------------------------------------- /frontend/app/models/treatment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/treatment.js -------------------------------------------------------------------------------- /frontend/app/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/user.js -------------------------------------------------------------------------------- /frontend/app/models/weather.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/models/weather.js -------------------------------------------------------------------------------- /frontend/app/resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/resolver.js -------------------------------------------------------------------------------- /frontend/app/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/router.js -------------------------------------------------------------------------------- /frontend/app/routes/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/routes/application.js -------------------------------------------------------------------------------- /frontend/app/routes/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/routes/chart.js -------------------------------------------------------------------------------- /frontend/app/routes/checkin/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/routes/checkin/date.js -------------------------------------------------------------------------------- /frontend/app/routes/checkin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/routes/checkin/index.js -------------------------------------------------------------------------------- /frontend/app/routes/checkin/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/routes/checkin/show.js -------------------------------------------------------------------------------- /frontend/app/routes/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/routes/delete.js -------------------------------------------------------------------------------- /frontend/app/routes/discourse-sign-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/routes/discourse-sign-in.js -------------------------------------------------------------------------------- /frontend/app/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/routes/index.js -------------------------------------------------------------------------------- /frontend/app/routes/invitation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/routes/invitation.js -------------------------------------------------------------------------------- /frontend/app/routes/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/routes/login.js -------------------------------------------------------------------------------- /frontend/app/routes/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/routes/notifications.js -------------------------------------------------------------------------------- /frontend/app/routes/onboarding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/routes/onboarding.js -------------------------------------------------------------------------------- /frontend/app/routes/oracle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/routes/oracle.js -------------------------------------------------------------------------------- /frontend/app/routes/oracle/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/routes/oracle/index.js -------------------------------------------------------------------------------- /frontend/app/routes/oracle/result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/routes/oracle/result.js -------------------------------------------------------------------------------- /frontend/app/routes/password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/routes/password.js -------------------------------------------------------------------------------- /frontend/app/routes/password/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/routes/password/update.js -------------------------------------------------------------------------------- /frontend/app/routes/patterns/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/routes/patterns/index.js -------------------------------------------------------------------------------- /frontend/app/routes/patterns/shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/routes/patterns/shared.js -------------------------------------------------------------------------------- /frontend/app/routes/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/routes/posts.js -------------------------------------------------------------------------------- /frontend/app/routes/posts/followings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/routes/posts/followings.js -------------------------------------------------------------------------------- /frontend/app/routes/posts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/routes/posts/index.js -------------------------------------------------------------------------------- /frontend/app/routes/posts/new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/routes/posts/new.js -------------------------------------------------------------------------------- /frontend/app/routes/posts/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/routes/posts/profile.js -------------------------------------------------------------------------------- /frontend/app/routes/posts/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/routes/posts/show.js -------------------------------------------------------------------------------- /frontend/app/routes/posts/topic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/routes/posts/topic.js -------------------------------------------------------------------------------- /frontend/app/routes/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/routes/settings.js -------------------------------------------------------------------------------- /frontend/app/routes/signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/routes/signup.js -------------------------------------------------------------------------------- /frontend/app/routes/unsubscribe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/routes/unsubscribe.js -------------------------------------------------------------------------------- /frontend/app/serializers/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/serializers/chart.js -------------------------------------------------------------------------------- /frontend/app/serializers/checkin-treatment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/serializers/checkin-treatment.js -------------------------------------------------------------------------------- /frontend/app/serializers/checkin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/serializers/checkin.js -------------------------------------------------------------------------------- /frontend/app/serializers/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/serializers/comment.js -------------------------------------------------------------------------------- /frontend/app/serializers/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/serializers/post.js -------------------------------------------------------------------------------- /frontend/app/serializers/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/serializers/search.js -------------------------------------------------------------------------------- /frontend/app/services/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/services/ajax.js -------------------------------------------------------------------------------- /frontend/app/services/chart-journal-switcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/services/chart-journal-switcher.js -------------------------------------------------------------------------------- /frontend/app/services/chart-selected-dates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/services/chart-selected-dates.js -------------------------------------------------------------------------------- /frontend/app/services/charts-visibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/services/charts-visibility.js -------------------------------------------------------------------------------- /frontend/app/services/emojis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/services/emojis.js -------------------------------------------------------------------------------- /frontend/app/services/logo-visiability.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/services/logo-visiability.js -------------------------------------------------------------------------------- /frontend/app/services/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/services/notification.js -------------------------------------------------------------------------------- /frontend/app/services/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/services/notifications.js -------------------------------------------------------------------------------- /frontend/app/services/patterns-loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/services/patterns-loading.js -------------------------------------------------------------------------------- /frontend/app/services/pusher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/services/pusher.js -------------------------------------------------------------------------------- /frontend/app/services/pusher/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/services/pusher/connection.js -------------------------------------------------------------------------------- /frontend/app/services/pusher/subscription.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/services/pusher/subscription.js -------------------------------------------------------------------------------- /frontend/app/services/route-history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/services/route-history.js -------------------------------------------------------------------------------- /frontend/app/services/selectable-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/services/selectable-data.js -------------------------------------------------------------------------------- /frontend/app/services/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/services/session.js -------------------------------------------------------------------------------- /frontend/app/services/steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/services/steps.js -------------------------------------------------------------------------------- /frontend/app/services/tracking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/services/tracking.js -------------------------------------------------------------------------------- /frontend/app/session-stores/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/session-stores/application.js -------------------------------------------------------------------------------- /frontend/app/styles/_badges.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/_badges.scss -------------------------------------------------------------------------------- /frontend/app/styles/_bottom-nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/_bottom-nav.scss -------------------------------------------------------------------------------- /frontend/app/styles/_btn-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/_btn-group.scss -------------------------------------------------------------------------------- /frontend/app/styles/_progressbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/_progressbar.scss -------------------------------------------------------------------------------- /frontend/app/styles/_userengage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/_userengage.scss -------------------------------------------------------------------------------- /frontend/app/styles/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/app.scss -------------------------------------------------------------------------------- /frontend/app/styles/bitters/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/bitters/_base.scss -------------------------------------------------------------------------------- /frontend/app/styles/bitters/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/bitters/_buttons.scss -------------------------------------------------------------------------------- /frontend/app/styles/bitters/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/bitters/_forms.scss -------------------------------------------------------------------------------- /frontend/app/styles/bitters/_grid-settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/bitters/_grid-settings.scss -------------------------------------------------------------------------------- /frontend/app/styles/bitters/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/bitters/_lists.scss -------------------------------------------------------------------------------- /frontend/app/styles/bitters/_offsets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/bitters/_offsets.scss -------------------------------------------------------------------------------- /frontend/app/styles/bitters/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/bitters/_tables.scss -------------------------------------------------------------------------------- /frontend/app/styles/bitters/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/bitters/_typography.scss -------------------------------------------------------------------------------- /frontend/app/styles/bitters/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/bitters/_variables.scss -------------------------------------------------------------------------------- /frontend/app/styles/colorable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/colorable.scss -------------------------------------------------------------------------------- /frontend/app/styles/components/add-trackings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/components/add-trackings.scss -------------------------------------------------------------------------------- /frontend/app/styles/components/discussions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/components/discussions.scss -------------------------------------------------------------------------------- /frontend/app/styles/components/emoji-menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/components/emoji-menu.scss -------------------------------------------------------------------------------- /frontend/app/styles/components/form-field.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/components/form-field.scss -------------------------------------------------------------------------------- /frontend/app/styles/components/health-chart.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/components/health-chart.scss -------------------------------------------------------------------------------- /frontend/app/styles/components/invitation-form.scss: -------------------------------------------------------------------------------- 1 | .invitation-form { 2 | @include outer-container; 3 | } 4 | -------------------------------------------------------------------------------- /frontend/app/styles/components/label-switch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/components/label-switch.scss -------------------------------------------------------------------------------- /frontend/app/styles/components/login-form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/components/login-form.scss -------------------------------------------------------------------------------- /frontend/app/styles/components/navigation-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/components/navigation-bar.scss -------------------------------------------------------------------------------- /frontend/app/styles/components/save-status.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/components/save-status.scss -------------------------------------------------------------------------------- /frontend/app/styles/components/signup-form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/components/signup-form.scss -------------------------------------------------------------------------------- /frontend/app/styles/components/step-controls.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/components/step-controls.scss -------------------------------------------------------------------------------- /frontend/app/styles/components/tags-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/components/tags-group.scss -------------------------------------------------------------------------------- /frontend/app/styles/ember-power-select-search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/ember-power-select-search.scss -------------------------------------------------------------------------------- /frontend/app/styles/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/fonts.scss -------------------------------------------------------------------------------- /frontend/app/styles/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/global.scss -------------------------------------------------------------------------------- /frontend/app/styles/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/layout.scss -------------------------------------------------------------------------------- /frontend/app/styles/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/mixins.scss -------------------------------------------------------------------------------- /frontend/app/styles/pace-theme-minimal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/pace-theme-minimal.scss -------------------------------------------------------------------------------- /frontend/app/styles/spinner.scss: -------------------------------------------------------------------------------- 1 | :root { 2 | --sk-color: #{$primary}; 3 | } 4 | -------------------------------------------------------------------------------- /frontend/app/styles/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/styles/variables.scss -------------------------------------------------------------------------------- /frontend/app/templates/application-loading.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/application-loading.hbs -------------------------------------------------------------------------------- /frontend/app/templates/application.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/application.hbs -------------------------------------------------------------------------------- /frontend/app/templates/application/footer.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/application/footer.hbs -------------------------------------------------------------------------------- /frontend/app/templates/application/header.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/application/header.hbs -------------------------------------------------------------------------------- /frontend/app/templates/chart.hbs: -------------------------------------------------------------------------------- 1 | {{health-dashboard}} 2 | -------------------------------------------------------------------------------- /frontend/app/templates/checkin/date.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/checkin/date.hbs -------------------------------------------------------------------------------- /frontend/app/templates/checkin/show.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/checkin/show.hbs -------------------------------------------------------------------------------- /frontend/app/templates/components/add-reminder.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/components/add-reminder.hbs -------------------------------------------------------------------------------- /frontend/app/templates/components/at-js-autocomplete.hbs: -------------------------------------------------------------------------------- 1 | {{yield}} 2 | -------------------------------------------------------------------------------- /frontend/app/templates/components/birth-date.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/components/birth-date.hbs -------------------------------------------------------------------------------- /frontend/app/templates/components/bottom-nav.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/components/bottom-nav.hbs -------------------------------------------------------------------------------- /frontend/app/templates/components/chart/g-flat.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/components/chart/g-flat.hbs -------------------------------------------------------------------------------- /frontend/app/templates/components/chart/g-hbi.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/components/chart/g-hbi.hbs -------------------------------------------------------------------------------- /frontend/app/templates/components/chart/g-timeline.hbs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /frontend/app/templates/components/draggable-dropzone.hbs: -------------------------------------------------------------------------------- 1 | {{yield}} 2 | -------------------------------------------------------------------------------- /frontend/app/templates/components/draggable-item.hbs: -------------------------------------------------------------------------------- 1 | {{yield}} 2 | -------------------------------------------------------------------------------- /frontend/app/templates/components/emoji-menu.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/components/emoji-menu.hbs -------------------------------------------------------------------------------- /frontend/app/templates/components/fb-share-btn.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/components/fb-share-btn.hbs -------------------------------------------------------------------------------- /frontend/app/templates/components/form-field.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/components/form-field.hbs -------------------------------------------------------------------------------- /frontend/app/templates/components/form-for.hbs: -------------------------------------------------------------------------------- 1 | {{yield}} 2 | -------------------------------------------------------------------------------- /frontend/app/templates/components/health-chart.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/components/health-chart.hbs -------------------------------------------------------------------------------- /frontend/app/templates/components/join-footer.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/components/join-footer.hbs -------------------------------------------------------------------------------- /frontend/app/templates/components/journal-list.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/components/journal-list.hbs -------------------------------------------------------------------------------- /frontend/app/templates/components/label-switch.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/components/label-switch.hbs -------------------------------------------------------------------------------- /frontend/app/templates/components/login-form.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/components/login-form.hbs -------------------------------------------------------------------------------- /frontend/app/templates/components/multi-group.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/components/multi-group.hbs -------------------------------------------------------------------------------- /frontend/app/templates/components/pattern/chart-hover.hbs: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /frontend/app/templates/components/pattern/chart-legend-item.hbs: -------------------------------------------------------------------------------- 1 | {{item.label}} 2 | -------------------------------------------------------------------------------- /frontend/app/templates/components/pip-tag.hbs: -------------------------------------------------------------------------------- 1 |
2 |

{{pip-label value}}

3 |
4 | -------------------------------------------------------------------------------- /frontend/app/templates/components/power-select/selected-name.hbs: -------------------------------------------------------------------------------- 1 | {{option.name}} 2 | -------------------------------------------------------------------------------- /frontend/app/templates/components/profile-form.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/components/profile-form.hbs -------------------------------------------------------------------------------- /frontend/app/templates/components/save-status.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/components/save-status.hbs -------------------------------------------------------------------------------- /frontend/app/templates/components/scroll-to-anchor.hbs: -------------------------------------------------------------------------------- 1 | {{yield}} 2 | -------------------------------------------------------------------------------- /frontend/app/templates/components/signup-form.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/components/signup-form.hbs -------------------------------------------------------------------------------- /frontend/app/templates/components/toggle-logo.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/components/toggle-logo.hbs -------------------------------------------------------------------------------- /frontend/app/templates/components/tumblr-share.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/components/tumblr-share.hbs -------------------------------------------------------------------------------- /frontend/app/templates/delete.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/delete.hbs -------------------------------------------------------------------------------- /frontend/app/templates/invitation.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/invitation.hbs -------------------------------------------------------------------------------- /frontend/app/templates/login.hbs: -------------------------------------------------------------------------------- 1 | {{login-form}} 2 | -------------------------------------------------------------------------------- /frontend/app/templates/notifications.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/notifications.hbs -------------------------------------------------------------------------------- /frontend/app/templates/onboarding.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/onboarding.hbs -------------------------------------------------------------------------------- /frontend/app/templates/oracle.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/oracle.hbs -------------------------------------------------------------------------------- /frontend/app/templates/oracle/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/oracle/index.hbs -------------------------------------------------------------------------------- /frontend/app/templates/oracle/result.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/oracle/result.hbs -------------------------------------------------------------------------------- /frontend/app/templates/password/reset.hbs: -------------------------------------------------------------------------------- 1 | {{reset-password-form}} 2 | -------------------------------------------------------------------------------- /frontend/app/templates/password/update.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/password/update.hbs -------------------------------------------------------------------------------- /frontend/app/templates/patterns/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/patterns/index.hbs -------------------------------------------------------------------------------- /frontend/app/templates/patterns/shared.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/patterns/shared.hbs -------------------------------------------------------------------------------- /frontend/app/templates/posts.hbs: -------------------------------------------------------------------------------- 1 | {{outlet}} 2 | -------------------------------------------------------------------------------- /frontend/app/templates/posts/followings.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/posts/followings.hbs -------------------------------------------------------------------------------- /frontend/app/templates/posts/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/posts/index.hbs -------------------------------------------------------------------------------- /frontend/app/templates/posts/new.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/posts/new.hbs -------------------------------------------------------------------------------- /frontend/app/templates/posts/profile.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/posts/profile.hbs -------------------------------------------------------------------------------- /frontend/app/templates/posts/show.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/posts/show.hbs -------------------------------------------------------------------------------- /frontend/app/templates/posts/topic.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/posts/topic.hbs -------------------------------------------------------------------------------- /frontend/app/templates/privacy-policy.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/privacy-policy.hbs -------------------------------------------------------------------------------- /frontend/app/templates/settings.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/settings.hbs -------------------------------------------------------------------------------- /frontend/app/templates/signup.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/signup.hbs -------------------------------------------------------------------------------- /frontend/app/templates/terms-of-service.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/templates/terms-of-service.hbs -------------------------------------------------------------------------------- /frontend/app/templates/unsubscribe.hbs: -------------------------------------------------------------------------------- 1 |

You've unsubscribed successfully

2 | -------------------------------------------------------------------------------- /frontend/app/transforms/birthdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/transforms/birthdate.js -------------------------------------------------------------------------------- /frontend/app/transforms/raw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/transforms/raw.js -------------------------------------------------------------------------------- /frontend/app/transforms/time-zone-name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/app/transforms/time-zone-name.js -------------------------------------------------------------------------------- /frontend/app/utils/i18n/missing-message.js: -------------------------------------------------------------------------------- 1 | export default function() { 2 | return ''; 3 | } 4 | -------------------------------------------------------------------------------- /frontend/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/bower.json -------------------------------------------------------------------------------- /frontend/config/ember-cli-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/config/ember-cli-update.json -------------------------------------------------------------------------------- /frontend/config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/config/environment.js -------------------------------------------------------------------------------- /frontend/config/targets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/config/targets.js -------------------------------------------------------------------------------- /frontend/ember-cli-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/ember-cli-build.js -------------------------------------------------------------------------------- /frontend/lib/full-story/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/lib/full-story/index.js -------------------------------------------------------------------------------- /frontend/lib/full-story/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/lib/full-story/package.json -------------------------------------------------------------------------------- /frontend/lib/heap-analytics/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/lib/heap-analytics/index.js -------------------------------------------------------------------------------- /frontend/lib/heap-analytics/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/lib/heap-analytics/package.json -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/patches/ember-cli+2.18.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/patches/ember-cli+2.18.2.patch -------------------------------------------------------------------------------- /frontend/public/assets/checkins.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/checkins.svg -------------------------------------------------------------------------------- /frontend/public/assets/crystal-ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/crystal-ball.png -------------------------------------------------------------------------------- /frontend/public/assets/emoji/IconsetSmiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/emoji/IconsetSmiles.png -------------------------------------------------------------------------------- /frontend/public/assets/empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/empty.svg -------------------------------------------------------------------------------- /frontend/public/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/logo.svg -------------------------------------------------------------------------------- /frontend/public/assets/menu-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/menu-icon.svg -------------------------------------------------------------------------------- /frontend/public/assets/nav_icons/account_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/nav_icons/account_2.svg -------------------------------------------------------------------------------- /frontend/public/assets/nav_icons/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/nav_icons/arrow-left.svg -------------------------------------------------------------------------------- /frontend/public/assets/nav_icons/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/nav_icons/arrow-right.svg -------------------------------------------------------------------------------- /frontend/public/assets/nav_icons/calendar-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/nav_icons/calendar-icon.svg -------------------------------------------------------------------------------- /frontend/public/assets/nav_icons/checkin_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/nav_icons/checkin_2.svg -------------------------------------------------------------------------------- /frontend/public/assets/nav_icons/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/nav_icons/circle.svg -------------------------------------------------------------------------------- /frontend/public/assets/nav_icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/nav_icons/close.svg -------------------------------------------------------------------------------- /frontend/public/assets/nav_icons/discuss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/nav_icons/discuss.svg -------------------------------------------------------------------------------- /frontend/public/assets/nav_icons/discuss_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/nav_icons/discuss_white.svg -------------------------------------------------------------------------------- /frontend/public/assets/nav_icons/explore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/nav_icons/explore.svg -------------------------------------------------------------------------------- /frontend/public/assets/nav_icons/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/nav_icons/eye.svg -------------------------------------------------------------------------------- /frontend/public/assets/nav_icons/history_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/nav_icons/history_2.svg -------------------------------------------------------------------------------- /frontend/public/assets/nav_icons/history_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/nav_icons/history_white.svg -------------------------------------------------------------------------------- /frontend/public/assets/nav_icons/left-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/nav_icons/left-arrow.svg -------------------------------------------------------------------------------- /frontend/public/assets/nav_icons/settings-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/nav_icons/settings-icon.svg -------------------------------------------------------------------------------- /frontend/public/assets/onboarding-success-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/onboarding-success-sm.png -------------------------------------------------------------------------------- /frontend/public/assets/onboarding_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/onboarding_success.png -------------------------------------------------------------------------------- /frontend/public/assets/smiley.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/smiley.svg -------------------------------------------------------------------------------- /frontend/public/assets/tag-point.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/tag-point.svg -------------------------------------------------------------------------------- /frontend/public/assets/weather/clear-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/weather/clear-day.png -------------------------------------------------------------------------------- /frontend/public/assets/weather/clear-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/weather/clear-night.png -------------------------------------------------------------------------------- /frontend/public/assets/weather/cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/weather/cloudy.png -------------------------------------------------------------------------------- /frontend/public/assets/weather/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/weather/default.png -------------------------------------------------------------------------------- /frontend/public/assets/weather/fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/weather/fog.png -------------------------------------------------------------------------------- /frontend/public/assets/weather/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/weather/rain.png -------------------------------------------------------------------------------- /frontend/public/assets/weather/sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/weather/sleet.png -------------------------------------------------------------------------------- /frontend/public/assets/weather/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/weather/snow.png -------------------------------------------------------------------------------- /frontend/public/assets/weather/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/assets/weather/wind.png -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /frontend/static.json: -------------------------------------------------------------------------------- 1 | { 2 | "https_only": true 3 | } 4 | -------------------------------------------------------------------------------- /frontend/testem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/testem.js -------------------------------------------------------------------------------- /frontend/tests/helpers/destroy-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/helpers/destroy-app.js -------------------------------------------------------------------------------- /frontend/tests/helpers/module-for-acceptance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/helpers/module-for-acceptance.js -------------------------------------------------------------------------------- /frontend/tests/helpers/resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/helpers/resolver.js -------------------------------------------------------------------------------- /frontend/tests/helpers/start-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/helpers/start-app.js -------------------------------------------------------------------------------- /frontend/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/index.html -------------------------------------------------------------------------------- /frontend/tests/test-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/test-helper.js -------------------------------------------------------------------------------- /frontend/tests/unit/adapters/reaction-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/adapters/reaction-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/controllers/posts/new-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/controllers/posts/new-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/controllers/posts/show-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/controllers/posts/show-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/controllers/settings-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/controllers/settings-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/helpers/includes-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/helpers/includes-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/mixins/add-meta-tags-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/mixins/add-meta-tags-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/mixins/body-formatable-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/mixins/body-formatable-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/mixins/fields-by-units-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/mixins/fields-by-units-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/mixins/topicable-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/mixins/topicable-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/mixins/typeable-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/mixins/typeable-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/mixins/user-nameable-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/mixins/user-nameable-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/models/chart-list-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/models/chart-list-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/models/comment-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/models/comment-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/models/food-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/models/food-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/models/notification-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/models/notification-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/models/oracle-request-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/models/oracle-request-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/models/pattern-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/models/pattern-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/models/post-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/models/post-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/models/postable-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/models/postable-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/models/reactable-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/models/reactable-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/models/reaction-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/models/reaction-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/models/session-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/models/session-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/models/topic-following-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/models/topic-following-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/models/user-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/models/user-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/models/weather-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/models/weather-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/routes/notifications-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/routes/notifications-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/routes/oracle-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/routes/oracle-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/routes/oracle/index-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/routes/oracle/index-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/routes/oracle/result-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/routes/oracle/result-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/routes/posts-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/routes/posts-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/routes/posts/index-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/routes/posts/index-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/routes/posts/new-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/routes/posts/new-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/routes/posts/profile-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/routes/posts/profile-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/routes/posts/show-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/routes/posts/show-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/routes/posts/topic-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/routes/posts/topic-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/routes/settings-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/routes/settings-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/serializers/post-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/serializers/post-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/services/ajax-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/services/ajax-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/services/emojis-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/services/emojis-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/services/notifications-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/services/notifications-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/services/route-history-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/services/route-history-test.js -------------------------------------------------------------------------------- /frontend/tests/unit/transforms/raw-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/frontend/tests/unit/transforms/raw-test.js -------------------------------------------------------------------------------- /frontend/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /impact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/impact.md -------------------------------------------------------------------------------- /native/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/.dockerignore -------------------------------------------------------------------------------- /native/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/.eslintrc.js -------------------------------------------------------------------------------- /native/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/.gitignore -------------------------------------------------------------------------------- /native/.nvmrc: -------------------------------------------------------------------------------- 1 | v18.18.0 2 | -------------------------------------------------------------------------------- /native/AppEntry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/AppEntry.js -------------------------------------------------------------------------------- /native/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/Dockerfile -------------------------------------------------------------------------------- /native/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/app.json -------------------------------------------------------------------------------- /native/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/assets/adaptive-icon.png -------------------------------------------------------------------------------- /native/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/assets/favicon.png -------------------------------------------------------------------------------- /native/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/assets/icon.png -------------------------------------------------------------------------------- /native/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/assets/splash.png -------------------------------------------------------------------------------- /native/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/babel.config.js -------------------------------------------------------------------------------- /native/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/package-lock.json -------------------------------------------------------------------------------- /native/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/package.json -------------------------------------------------------------------------------- /native/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/src/App.test.tsx -------------------------------------------------------------------------------- /native/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/src/App.tsx -------------------------------------------------------------------------------- /native/src/Theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/src/Theme.ts -------------------------------------------------------------------------------- /native/src/components/BackButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/src/components/BackButton.tsx -------------------------------------------------------------------------------- /native/src/components/Background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/src/components/Background.tsx -------------------------------------------------------------------------------- /native/src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/src/components/Button.tsx -------------------------------------------------------------------------------- /native/src/components/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/src/components/Card.tsx -------------------------------------------------------------------------------- /native/src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/src/components/Footer.tsx -------------------------------------------------------------------------------- /native/src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/src/components/Header.tsx -------------------------------------------------------------------------------- /native/src/components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/src/components/Layout.tsx -------------------------------------------------------------------------------- /native/src/components/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/src/components/Link.tsx -------------------------------------------------------------------------------- /native/src/components/TextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/src/components/TextInput.tsx -------------------------------------------------------------------------------- /native/src/helpers/emailValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/src/helpers/emailValidator.ts -------------------------------------------------------------------------------- /native/src/helpers/passwordValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/src/helpers/passwordValidator.ts -------------------------------------------------------------------------------- /native/src/helpers/usernameValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/src/helpers/usernameValidator.ts -------------------------------------------------------------------------------- /native/src/screens/CreateAccountScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/src/screens/CreateAccountScreen.tsx -------------------------------------------------------------------------------- /native/src/screens/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/src/screens/Dashboard.tsx -------------------------------------------------------------------------------- /native/src/screens/LoginScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/src/screens/LoginScreen.tsx -------------------------------------------------------------------------------- /native/src/screens/ResetPasswordScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/src/screens/ResetPasswordScreen.tsx -------------------------------------------------------------------------------- /native/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/tsconfig.json -------------------------------------------------------------------------------- /native/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/native/webpack.config.js -------------------------------------------------------------------------------- /script/backend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/script/backend -------------------------------------------------------------------------------- /script/ember: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/script/ember -------------------------------------------------------------------------------- /script/frontend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/script/frontend -------------------------------------------------------------------------------- /script/npm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyforgood/Flaredown/HEAD/script/npm --------------------------------------------------------------------------------