├── .browserslistrc ├── .buildpacks ├── .circleci └── config.yml ├── .codeclimate.yml ├── .env.example ├── .erdconfig ├── .eslintrc.js ├── .github ├── config │ └── rubocop_linter_action.yml └── workflows │ └── update-dependencies.yml ├── .gitignore ├── .haml-lint.yml ├── .pre-commit-config.yaml ├── .rspec_parallel ├── .rubocop.yml ├── .ruby-version ├── .vscode └── settings.json ├── Gemfile ├── Gemfile.lock ├── LICENSE.AGPL.txt ├── Procfile ├── Procfile.dev ├── Procfile.dev.example ├── README.md ├── Rakefile ├── app ├── admin │ ├── antenne.rb │ ├── company.rb │ ├── company_satisfaction.rb │ ├── concerns │ │ ├── admin_archivable.rb │ │ ├── csv_exportable.rb │ │ ├── dynamically_filtrable.rb │ │ └── territorial_zones_searchable.rb │ ├── contact.rb │ ├── cooperation.rb │ ├── diagnosis.rb │ ├── duplicate_user.rb │ ├── email_retentions.rb │ ├── expert.rb │ ├── facility.rb │ ├── feedback.rb │ ├── helpers │ │ ├── admin_link_to.rb │ │ ├── csv_builder.rb │ │ ├── human_attribute_status_tag.rb │ │ ├── intervention_zone_description.rb │ │ ├── links.rb │ │ └── territorial_zones_helper.rb │ ├── institution.rb │ ├── landing.rb │ ├── landing_theme.rb │ ├── logo.rb │ ├── match.rb │ ├── need.rb │ ├── patches │ │ ├── data_access.rb │ │ └── scopes.rb │ ├── profil_picture.rb │ ├── reassign_matches.rb │ ├── sidekiq.rb │ ├── solicitation.rb │ ├── spam.rb │ ├── subject.rb │ ├── theme.rb │ └── user.rb ├── assets │ ├── builds │ │ └── .keep │ ├── config │ │ └── manifest.js │ ├── images │ │ ├── Republique_Francaise_RVB.png │ │ ├── Republique_Francaise_blanc.png │ │ ├── cooperations │ │ │ ├── dreets.png │ │ │ ├── entreprendre.jpg │ │ │ ├── entreprises-pays-loire.svg │ │ │ ├── entreprises-s-engagent.png │ │ │ ├── les-aides-cci.png │ │ │ ├── les-clubs-sportifs-engages.png │ │ │ ├── ministere-economie-finances.png │ │ │ ├── mon-entreprise-urssaf.png │ │ │ ├── team-rh-occitanie.svg │ │ │ ├── tihm.png │ │ │ ├── transition-ecologique.png │ │ │ └── zetwal.png │ │ ├── equipe │ │ │ ├── adeline.webp │ │ │ ├── christophe.webp │ │ │ ├── claire.webp │ │ │ ├── julien.webp │ │ │ ├── lucien.webp │ │ │ ├── ludivine.webp │ │ │ ├── mathieu.webp │ │ │ ├── melanie.webp │ │ │ ├── niels.webp │ │ │ └── portraits-emails │ │ │ │ ├── adeline.webp │ │ │ │ ├── christophe.webp │ │ │ │ ├── ludivine.webp │ │ │ │ ├── mathieu.webp │ │ │ │ ├── melanie.webp │ │ │ │ └── niels.webp │ │ ├── favicon │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── browserconfig.xml.erb │ │ │ ├── favicon.ico │ │ │ ├── favicon.svg │ │ │ ├── mstile-192x192.png │ │ │ └── site.webmanifest.erb │ │ ├── home-430w.png │ │ ├── home.png │ │ ├── home.webp │ │ ├── info-alert-orange.png │ │ ├── info-alert.png │ │ ├── institutions │ │ │ ├── ademe.png │ │ │ ├── adie.png │ │ │ ├── agefiph.png │ │ │ ├── anact.svg │ │ │ ├── apec.png │ │ │ ├── aract.png │ │ │ ├── assurance-maladie.png │ │ │ ├── banque-de-france.png │ │ │ ├── bpi-france.png │ │ │ ├── caf.png │ │ │ ├── cap-emploi.png │ │ │ ├── carsat.png │ │ │ ├── cci-hauts-de-france.png │ │ │ ├── cci.png │ │ │ ├── chambre-d-agriculture.png │ │ │ ├── cma.png │ │ │ ├── collectivite-de-martinique.png │ │ │ ├── conseil-regional-de-bretagne.png │ │ │ ├── conseil-regional-hauts-de-france.png │ │ │ ├── conseillers-du-commerce-exterieur-de-la-france.png │ │ │ ├── dge.png │ │ │ ├── dgefp.png │ │ │ ├── dgfip.png │ │ │ ├── douanes.png │ │ │ ├── dreets.png │ │ │ ├── faf-tt.png │ │ │ ├── france-travail.png │ │ │ ├── geiq.png │ │ │ ├── inpi.png │ │ │ ├── linklusion.png │ │ │ ├── maison-professions-liberales.png │ │ │ ├── maisons-de-l-emploi.png │ │ │ ├── mediateur-des-entreprises.png │ │ │ ├── metropole-europeenne-de-lille.png │ │ │ ├── ministere-transition-ecologique.png │ │ │ ├── ocapiat.png │ │ │ ├── opco_2i.png │ │ │ ├── opco_afdas.png │ │ │ ├── opco_akto.png │ │ │ ├── opco_atlas.png │ │ │ ├── opco_construction.png │ │ │ ├── opco_entreprises_de_proximite.png │ │ │ ├── opco_mobilites.png │ │ │ ├── opco_ocapiat.png │ │ │ ├── opco_sante.png │ │ │ ├── opco_uniformation.png │ │ │ ├── opcommerce.png │ │ │ ├── prefecture-des-hauts-de-france.png │ │ │ ├── reseau-des-missions-locales.png │ │ │ ├── reseau-initiative.png │ │ │ └── urssaf.png │ │ ├── je-donne-mon-avis.svg │ │ ├── logo-ce.old.png │ │ ├── logo-ce.png │ │ ├── picto1.png │ │ ├── picto2.png │ │ ├── picto3.png │ │ ├── pictos-dsfr │ │ │ ├── city-hall.svg │ │ │ ├── data-visualization.svg │ │ │ ├── document.svg │ │ │ └── internet.svg │ │ ├── place-des-entreprises-logo.png │ │ ├── prefets_regions │ │ │ ├── auvergne-rhone-alpes.png │ │ │ ├── bourgogne-franche-comte.png │ │ │ ├── bretagne.png │ │ │ ├── centre-val-de-loire.png │ │ │ ├── grand-est.png │ │ │ ├── hauts-de-france.png │ │ │ ├── ile-de-france.png │ │ │ ├── martinique.png │ │ │ ├── normandie.png │ │ │ ├── nouvelle-aquitaine.png │ │ │ ├── occitanie.png │ │ │ ├── pays-de-la-loire.png │ │ │ └── provence-alpes-cote-d-azur.png │ │ ├── regions │ │ │ ├── bretagne.old.png │ │ │ ├── hauts-de-france.png │ │ │ ├── ile-de-france.png │ │ │ └── martinique.png │ │ ├── temoignages │ │ │ ├── atlantique-expertise-maritime.png │ │ │ ├── biere-qui-roule.jpg │ │ │ ├── chill-and-bliss.jpg │ │ │ ├── codetics.jpg │ │ │ ├── data-officer-ai.jpg │ │ │ ├── eurofins.jpg │ │ │ ├── eurofins.png │ │ │ ├── excelhemp.jpg │ │ │ ├── france-konjacs.jpg │ │ │ ├── france-konjacs.png │ │ │ ├── mathieu-vettese.jpg │ │ │ ├── paint-me-up.jpg │ │ │ ├── plat-o-repas.jpg │ │ │ ├── valeurs-sociales.jpg │ │ │ └── vieux-four.jpg │ │ └── tuto │ │ │ ├── bandeau-vert.png │ │ │ ├── boutons.png │ │ │ ├── experts.png │ │ │ └── haut-de-page.png │ ├── javascripts │ │ ├── active_admin.js │ │ ├── admin │ │ │ └── custom.js │ │ └── pages │ │ │ └── matomo_events.js │ └── stylesheets │ │ ├── active_admin.sass │ │ ├── application.sass │ │ ├── application │ │ ├── annuaire.sass │ │ ├── custom_components.sass │ │ ├── layout.sass │ │ ├── need_show.sass │ │ ├── reminders.sass │ │ ├── reports.sass │ │ ├── steps.sass │ │ └── tuto.sass │ │ ├── components │ │ ├── alertes.sass │ │ ├── autocomplete.sass │ │ ├── buttons.sass │ │ ├── callout.sass │ │ ├── cards-expert.sass │ │ ├── cards-landing.sass │ │ ├── cards.sass │ │ ├── charts.sass │ │ ├── components.sass │ │ ├── forms.sass │ │ ├── labels.sass │ │ ├── modals.sass │ │ ├── navigation.sass │ │ ├── pagination.sass │ │ ├── skeleton_card.sass │ │ ├── solicitation_actions.sass │ │ ├── table.sass │ │ ├── tabs.sass │ │ ├── tags.sass │ │ ├── tarteaucitron.sass │ │ ├── tiles.sass │ │ └── tooltip.sass │ │ ├── mailers.sass │ │ ├── pages.sass │ │ ├── pages │ │ ├── home.sass │ │ ├── landings.sass │ │ ├── multistep-form.sass │ │ ├── pages.sass │ │ └── stats.sass │ │ └── shared │ │ ├── base.sass │ │ ├── dsfr_overload.sass │ │ ├── environment_ribbon.sass │ │ ├── tarteaucitron-dsfr.scss │ │ ├── typo.sass │ │ ├── user_impersonate.sass │ │ └── utilities.sass ├── controllers │ ├── about_controller.rb │ ├── annuaire │ │ ├── antennes_controller.rb │ │ ├── base_controller.rb │ │ ├── institutions_controller.rb │ │ ├── search_controller.rb │ │ ├── subjects_controller.rb │ │ └── users_controller.rb │ ├── api │ │ └── v1 │ │ │ ├── base_controller.rb │ │ │ ├── landings │ │ │ ├── base_controller.rb │ │ │ ├── landing_subjects_controller.rb │ │ │ ├── landing_themes_controller.rb │ │ │ └── landings_controller.rb │ │ │ └── solicitations_controller.rb │ ├── application_controller.rb │ ├── badges_controller.rb │ ├── companies_controller.rb │ ├── company_satisfactions_controller.rb │ ├── concerns │ │ ├── geocoder_ip.rb │ │ ├── iframe_prefix.rb │ │ ├── inbox.rb │ │ ├── load_filter_options.rb │ │ ├── manager_filters.rb │ │ ├── persisted_search.rb │ │ └── stats_utilities.rb │ ├── conseiller │ │ ├── cooperations_controller.rb │ │ ├── csv_exports_controller.rb │ │ ├── diagnoses │ │ │ └── steps_controller.rb │ │ ├── diagnoses_controller.rb │ │ ├── experts_controller.rb │ │ ├── shared_satisfactions_controller.rb │ │ ├── sitemap_controller.rb │ │ ├── solicitations_controller.rb │ │ ├── suivi_qualite_controller.rb │ │ └── veille_controller.rb │ ├── contacts_controller.rb │ ├── emails │ │ └── solicitations_controller.rb │ ├── experts_controller.rb │ ├── feedbacks_controller.rb │ ├── landings │ │ ├── base_controller.rb │ │ ├── landing_themes_controller.rb │ │ └── landings_controller.rb │ ├── manager │ │ ├── needs_controller.rb │ │ └── stats_controller.rb │ ├── matches_controller.rb │ ├── needs_controller.rb │ ├── pages_controller.rb │ ├── reminders │ │ ├── base_controller.rb │ │ ├── experts_controller.rb │ │ ├── needs_controller.rb │ │ └── reminders_registers_controller.rb │ ├── reminders_actions_controller.rb │ ├── reports_controller.rb │ ├── shared_controller.rb │ ├── sitemap_controller.rb │ ├── solicitations_controller.rb │ ├── stats │ │ ├── base_controller.rb │ │ ├── public_controller.rb │ │ └── team_controller.rb │ ├── user_pages_controller.rb │ └── users │ │ ├── invitations_controller.rb │ │ └── registrations_controller.rb ├── front │ ├── javascripts │ │ ├── application │ │ │ ├── annuaire.js │ │ │ ├── controllers │ │ │ │ ├── autocomplete_controller.js │ │ │ │ ├── badges_controller.js │ │ │ │ ├── bandeau_info_controller.js │ │ │ │ ├── cgu_acceptance_controller.js │ │ │ │ ├── coverage_controller.js │ │ │ │ ├── diagnosis_needs_step_controller.js │ │ │ │ ├── direct_submit_controller.js │ │ │ │ ├── expert_autocomplete_controller.js │ │ │ │ ├── feedback_form_controller.js │ │ │ │ ├── fr_dropdown_controller.js │ │ │ │ ├── fr_header_controller.js │ │ │ │ ├── index.js │ │ │ │ ├── modal_controller.js │ │ │ │ ├── password_visibility_controller.js │ │ │ │ └── toggle_block_controller.js │ │ │ ├── feedbacks.js │ │ │ └── index.js │ │ ├── pages │ │ │ ├── controllers │ │ │ │ ├── index.js │ │ │ │ ├── pages_siret_autocomplete_controller.js │ │ │ │ └── prefill_textarea_controller.js │ │ │ ├── iframe_external_links.js │ │ │ ├── index.js │ │ │ └── navbar.js │ │ └── shared │ │ │ ├── checkboxes_require_one.js │ │ │ ├── column_charts.js │ │ │ ├── controllers │ │ │ ├── batch_check_controller.js │ │ │ ├── filters_controller.js │ │ │ ├── index.js │ │ │ ├── siret_autocomplete_controller.js │ │ │ └── stats_charts_controller.js │ │ │ ├── index.js │ │ │ ├── insee_code_field.js │ │ │ ├── line_charts.js │ │ │ ├── percentage_column_chart.js │ │ │ ├── polyfills.js │ │ │ └── utils.js │ └── packs │ │ ├── application.js │ │ ├── gouvfr-module.js │ │ ├── gouvfr-nomodule.js │ │ └── pages.js ├── helpers │ ├── active_admin_utilities_helper.rb │ ├── admin_expert_card_footer_helper.rb │ ├── annuaire_helper.rb │ ├── application_helper.rb │ ├── badges_helper.rb │ ├── breadcrumbs_helper.rb │ ├── companies_helper.rb │ ├── diagnosis_helper.rb │ ├── experts_helper.rb │ ├── images_helper.rb │ ├── institutions_helper.rb │ ├── mailto_helper.rb │ ├── needs_helper.rb │ ├── nested_errors_helper.rb │ ├── page_infos_helper.rb │ ├── person_helper.rb │ ├── regions_helper.rb │ ├── regions_options_helper.rb │ ├── reminders_helper.rb │ ├── scripts_snippets_helper.rb │ ├── search_helper.rb │ ├── seo_helper.rb │ ├── sitemap_helper.rb │ ├── solicitation_helper.rb │ ├── stats_helper.rb │ ├── status_helper.rb │ ├── subject_questions_helper.rb │ └── user_tabs_helper.rb ├── jobs │ ├── abandon_needs_job.rb │ ├── activity_reports │ │ ├── antenne_matches │ │ │ ├── enqueue_job.rb │ │ │ └── generate_job.rb │ │ ├── antenne_stats │ │ │ ├── enqueue_job.rb │ │ │ └── generate_job.rb │ │ ├── cooperation │ │ │ ├── enqueue_job.rb │ │ │ └── generate_job.rb │ │ ├── cooperation_solicitations │ │ │ ├── enqueue_job.rb │ │ │ └── generate_job.rb │ │ ├── notify_antenne_managers_job.rb │ │ └── notify_cooperation_managers_job.rb │ ├── add_shared_satisfactions_job.rb │ ├── admin │ │ ├── create_reminders_registers_job.rb │ │ ├── purge_csv_exports_job.rb │ │ └── send_failed_jobs_job.rb │ ├── api │ │ └── api_keys_revoke_job.rb │ ├── application_job.rb │ ├── archive_expired_matches_job.rb │ ├── company_emails │ │ ├── not_yet_taken_care_job.rb │ │ ├── send_intelligent_retention_emails_job.rb │ │ ├── send_retention_emails_job.rb │ │ ├── send_satisfaction_emails_job.rb │ │ ├── send_status_notification_job.rb │ │ └── solicitations_relaunch_job.rb │ ├── create_automatic_diagnosis_job.rb │ ├── create_shared_satisfaction_job.rb │ ├── csv_job.rb │ ├── erase_past_absences_job.rb │ ├── init_solicitations_provenance_detail_job.rb │ ├── match_feedback_email_job.rb │ ├── send_experts_reminders_job.rb │ └── update_antenne_hierarchy_job.rb ├── mailers │ ├── admin_mailer.rb │ ├── application_mailer.rb │ ├── company_mailer.rb │ ├── custom_devise_mailer.rb │ ├── expert_mailer.rb │ ├── solicitation_mailer.rb │ └── user_mailer.rb ├── models │ ├── activity_report.rb │ ├── antenne.rb │ ├── api_key.rb │ ├── application_record.rb │ ├── badge.rb │ ├── badge_badgeable.rb │ ├── category.rb │ ├── clockwork.rb │ ├── commune.rb │ ├── company.rb │ ├── company_satisfaction.rb │ ├── concerns │ │ ├── archivable.rb │ │ ├── categorie_juridique.rb │ │ ├── involvement_concern.rb │ │ ├── mandatory_answers.rb │ │ ├── many_communes.rb │ │ ├── naf_code.rb │ │ ├── person_concern.rb │ │ ├── range_scopes.rb │ │ ├── soft_deletable.rb │ │ ├── territory_needs_status.rb │ │ ├── with_effectif.rb │ │ ├── with_slug.rb │ │ ├── with_subject.rb │ │ ├── with_support_user.rb │ │ └── with_territorial_zones.rb │ ├── contact.rb │ ├── cooperation.rb │ ├── cooperation_theme.rb │ ├── diagnosis.rb │ ├── email_retention.rb │ ├── expert.rb │ ├── expert_subject.rb │ ├── facility.rb │ ├── feedback.rb │ ├── institution.rb │ ├── institution_subject.rb │ ├── landing.rb │ ├── landing_joint_theme.rb │ ├── landing_subject.rb │ ├── landing_theme.rb │ ├── logo.rb │ ├── match.rb │ ├── match_filter.rb │ ├── need.rb │ ├── profil_picture.rb │ ├── record_extensions │ │ ├── human_attribute_value.rb │ │ ├── human_count.rb │ │ └── random.rb │ ├── reminders_action.rb │ ├── reminders_register.rb │ ├── shared_satisfaction.rb │ ├── solicitation.rb │ ├── spam.rb │ ├── subject.rb │ ├── subject_answer.rb │ ├── subject_answer │ │ ├── filter.rb │ │ └── item.rb │ ├── subject_answer_grouping.rb │ ├── subject_question.rb │ ├── territorial_zone.rb │ ├── territory.rb │ ├── theme.rb │ ├── user.rb │ └── user_right.rb ├── policies │ ├── antenne_policy.rb │ ├── application_policy.rb │ ├── contact_policy.rb │ ├── cooperation_policy.rb │ ├── csv_export_policy.rb │ ├── diagnosis_policy.rb │ ├── expert_policy.rb │ ├── facility_policy.rb │ ├── feedback_policy.rb │ ├── institution_policy.rb │ ├── manager │ │ ├── needs_policy.rb │ │ └── stats_policy.rb │ ├── match_policy.rb │ ├── need_done_policy.rb │ ├── need_in_progress_policy.rb │ ├── need_policy.rb │ ├── report_policy.rb │ ├── shared_satisfaction_policy.rb │ ├── solicitation_policy.rb │ ├── stats │ │ └── all_policy.rb │ └── user_policy.rb ├── serializers │ ├── api │ │ └── v1 │ │ │ ├── landing_serializer.rb │ │ │ ├── landing_subject_serializer.rb │ │ │ ├── landing_theme_serializer.rb │ │ │ ├── simple_subject_answer_serializer.rb │ │ │ ├── solicitation_logo_serializer.rb │ │ │ ├── solicitation_serializer.rb │ │ │ └── subject_question_serializer.rb │ └── autocomplete │ │ ├── expert_serializer.rb │ │ └── expert_subject_serializer.rb ├── services │ ├── activity_reports │ │ ├── generate │ │ │ ├── antenne_matches.rb │ │ │ ├── antenne_stats.rb │ │ │ ├── base.rb │ │ │ ├── cooperation.rb │ │ │ └── cooperation_solicitations.rb │ │ ├── notify_antenne_managers.rb │ │ └── notify_cooperation_managers.rb │ ├── antenne_hierarchy.rb │ ├── api.rb │ ├── api │ │ ├── adresse │ │ │ └── search_municipality.rb │ │ ├── api_entreprise.rb │ │ ├── api_entreprise │ │ │ ├── entreprise.rb │ │ │ ├── entreprise_effectif_annuel.rb │ │ │ ├── entreprise_mandataires_sociaux.rb │ │ │ ├── etablissement.rb │ │ │ └── etablissement_effectif_mensuel.rb │ │ ├── france_competence.rb │ │ ├── france_competence │ │ │ ├── siret.rb │ │ │ └── token.rb │ │ ├── insee.rb │ │ ├── insee │ │ │ ├── siret.rb │ │ │ └── sirets_by_siren.rb │ │ ├── recherche_entreprises.rb │ │ ├── recherche_entreprises │ │ │ ├── search.rb │ │ │ └── search │ │ │ │ ├── fulltext.rb │ │ │ │ └── siret.rb │ │ ├── rne.rb │ │ └── rne │ │ │ ├── companies.rb │ │ │ └── token.rb │ ├── api_consumption │ │ ├── aggregators │ │ │ ├── company.rb │ │ │ └── facility.rb │ │ ├── company.rb │ │ ├── facility.rb │ │ └── models │ │ │ ├── base.rb │ │ │ ├── company │ │ │ ├── api_entreprise.rb │ │ │ ├── api_insee.rb │ │ │ ├── api_recherche_entreprises.rb │ │ │ └── base.rb │ │ │ ├── facility │ │ │ ├── api_entreprise.rb │ │ │ ├── api_insee.rb │ │ │ ├── api_recherche_entreprises.rb │ │ │ └── base.rb │ │ │ └── facility_autocomplete │ │ │ ├── api_entreprise.rb │ │ │ ├── api_insee.rb │ │ │ ├── api_recherche_entreprises.rb │ │ │ └── base.rb │ ├── api_geo │ │ └── query.rb │ ├── build_antennes_collection.rb │ ├── check_password_complexity.rb │ ├── create_territorial_coverage.rb │ ├── csv_export.rb │ ├── csv_export │ │ ├── antenne_exporter.rb │ │ ├── base_exporter.rb │ │ ├── feedback_exporter.rb │ │ ├── match_exporter.rb │ │ ├── solicitation_exporter.rb │ │ └── user_exporter.rb │ ├── csv_import.rb │ ├── csv_import │ │ ├── antenne_importer.rb │ │ ├── base_importer.rb │ │ └── user_importer.rb │ ├── demo_planning.rb │ ├── diagnosis_creation │ │ ├── create_automatic_diagnosis.rb │ │ ├── create_matches.rb │ │ ├── create_or_update_diagnosis.rb │ │ ├── create_or_update_facility_and_company.rb │ │ ├── find_relevant_expert_subjects.rb │ │ ├── new_diagnosis.rb │ │ └── steps.rb │ ├── effectif │ │ ├── code_effectif.rb │ │ ├── effectif_range.rb │ │ ├── effectifs.rb │ │ └── format.rb │ ├── faq_generator.rb │ ├── format_insee_codes.rb │ ├── format_siret.rb │ ├── get_provenance_details.rb │ ├── match_mailer_service.rb │ ├── needs_service.rb │ ├── query_from_entreprendre.rb │ ├── region_ordering_service.rb │ ├── reminders_service.rb │ ├── search_facility │ │ ├── all.rb │ │ ├── base.rb │ │ └── diffusable.rb │ ├── send_solicitation_generic_email.rb │ ├── sitemap_generator.rb │ ├── solicitation_modification │ │ ├── base.rb │ │ ├── create.rb │ │ └── format_query_params.rb │ ├── solicitations_relaunch_service.rb │ ├── stats │ │ ├── acquisitions │ │ │ ├── base.rb │ │ │ ├── needs_base.rb │ │ │ ├── overall_distribution_needs_done_with_help.rb │ │ │ ├── overall_distribution_needs_done_with_help_column.rb │ │ │ ├── overall_distribution_needs_transmitted.rb │ │ │ ├── overall_distribution_needs_transmitted_column.rb │ │ │ ├── overall_distribution_solicitations.rb │ │ │ ├── overall_distribution_solicitations_column.rb │ │ │ └── solicitations_base.rb │ │ ├── all.rb │ │ ├── base_stats.rb │ │ ├── companies │ │ │ ├── by_employees.rb │ │ │ ├── by_naf_code.rb │ │ │ └── diagnosis_completed.rb │ │ ├── filters │ │ │ ├── base.rb │ │ │ ├── companies.rb │ │ │ ├── matches.rb │ │ │ ├── needs.rb │ │ │ └── solicitations.rb │ │ ├── matches │ │ │ ├── base.rb │ │ │ ├── done.rb │ │ │ ├── done_no_help.rb │ │ │ ├── done_not_reachable.rb │ │ │ ├── not_for_me.rb │ │ │ ├── not_positioning.rb │ │ │ ├── positioning.rb │ │ │ ├── taken_care_in_five_days.rb │ │ │ ├── taken_care_in_three_days.rb │ │ │ ├── taking_care.rb │ │ │ └── taking_care_time.rb │ │ ├── mini_stats.rb │ │ ├── needs │ │ │ ├── abandoned.rb │ │ │ ├── abandoned_total_count.rb │ │ │ ├── base.rb │ │ │ ├── concerns │ │ │ │ ├── subjects.rb │ │ │ │ ├── taking_care_time.rb │ │ │ │ └── themes.rb │ │ │ ├── diagnosis_completed.rb │ │ │ ├── done.rb │ │ │ ├── done_no_help.rb │ │ │ ├── done_not_reachable.rb │ │ │ ├── done_with_help_column.rb │ │ │ ├── exchange_with_expert.rb │ │ │ ├── not_for_me.rb │ │ │ ├── positioning.rb │ │ │ ├── quo.rb │ │ │ ├── requalification.rb │ │ │ ├── subjects_all.rb │ │ │ ├── subjects_from_external_cooperation.rb │ │ │ ├── subjects_not_from_external_cooperation.rb │ │ │ ├── taken_care_in_five_days.rb │ │ │ ├── taken_care_in_three_days.rb │ │ │ ├── taking_care.rb │ │ │ ├── themes_all.rb │ │ │ ├── themes_from_external_cooperation.rb │ │ │ ├── themes_not_from_external_cooperation.rb │ │ │ └── transmitted.rb │ │ ├── solicitations │ │ │ ├── completed.rb │ │ │ ├── diagnoses.rb │ │ │ └── transmitted_less_than_72h.rb │ │ ├── two_rates_stats.rb │ │ └── users │ │ │ └── invitation_accepted.rb │ ├── temoignage_generator.rb │ ├── time_duration_service │ │ ├── base.rb │ │ ├── months.rb │ │ └── quarters.rb │ ├── utilities │ │ └── arrays.rb │ ├── xlsx_export.rb │ └── xlsx_export │ │ ├── annuaire_user_exporter.rb │ │ ├── antenne_stats_exporter.rb │ │ ├── antenne_stats_worksheet_generator │ │ ├── base.rb │ │ ├── by_antenne.rb │ │ ├── by_antenne_methods.rb │ │ ├── by_position.rb │ │ ├── by_refused_subject.rb │ │ ├── by_subject.rb │ │ ├── by_subject_methods.rb │ │ ├── by_territory.rb │ │ ├── caption.rb │ │ └── national.rb │ │ ├── base_exporter.rb │ │ ├── cooperation_exporter.rb │ │ ├── cooperation_solicitations_exporter.rb │ │ ├── cooperation_worksheet_generator │ │ ├── base.rb │ │ ├── provenance.rb │ │ ├── repartition.rb │ │ ├── solicitations.rb │ │ └── volume.rb │ │ └── match_exporter.rb └── views │ ├── about │ ├── _temoignage.html.haml │ ├── _transcription_pde_presentation.haml │ ├── _transcription_pde_testimonial.haml │ ├── accessibilite.html.erb │ ├── cgu.fr.html.erb │ ├── comment_ca_marche.html.haml │ ├── equipe.html.haml │ ├── mentions_d_information.fr.html.erb │ └── mentions_legales.fr.html.erb │ ├── admin │ ├── reassign_matches │ │ └── _reassign_matches.html.haml │ └── solicitations │ │ └── _badges.html.haml │ ├── annuaire │ ├── antennes │ │ ├── _form.html.haml │ │ ├── _import_buttons.html.haml │ │ ├── _table.html.haml │ │ ├── import.html.haml │ │ └── index.html.haml │ ├── base │ │ ├── _header.html.haml │ │ ├── _import_errors.html.haml │ │ ├── _menu.html.haml │ │ └── _menu_link.html.haml │ ├── institutions │ │ ├── _form.html.haml │ │ ├── _table.html.haml │ │ └── index.html.haml │ ├── search │ │ ├── _form.html.haml │ │ ├── _results.html.haml │ │ ├── _simple_form.html.haml │ │ ├── autocomplete.html.haml │ │ └── institutions_autocomplete.html.haml │ ├── subjects │ │ ├── _table.html.haml │ │ └── index.html.haml │ └── users │ │ ├── _coverage.html.haml │ │ ├── _import_buttons.html.haml │ │ ├── _lazy_coverage.html.haml │ │ ├── _referencement_coverage_modal.html.haml │ │ ├── _skeleton_coverage.html.haml │ │ ├── _table.html.haml │ │ ├── import.html.haml │ │ └── index.html.haml │ ├── application │ ├── _bandeau_info.html.haml │ ├── _footer.html.haml │ ├── _head.html.haml │ ├── _navbar.html.haml │ ├── _person.haml │ ├── _person_modal.html.haml │ ├── _tarteaucitron.html.erb │ └── _user_admin_view.haml │ ├── badges │ ├── _form.html.haml │ ├── _header.html.haml │ ├── _menu.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ └── new.html.haml │ ├── companies │ ├── _company.html.haml │ ├── _errors.html.haml │ ├── _facility.html.haml │ ├── _mandataire.html.haml │ ├── _need.haml │ ├── _search_form.haml │ ├── needs.html.haml │ ├── search.haml │ └── show.html.haml │ ├── company_satisfactions │ ├── new.html.haml │ └── thank_you.html.haml │ ├── conseiller │ ├── cooperations │ │ ├── _menu.html.haml │ │ ├── _stats_filters.haml │ │ ├── matches.html.haml │ │ ├── needs.html.haml │ │ ├── provenance_detail_autocomplete.html.haml │ │ └── reports.haml │ ├── csv_exports │ │ ├── _header.html.haml │ │ ├── _menu.html.haml │ │ └── index.html.haml │ ├── diagnoses │ │ ├── _company_details.haml │ │ ├── new.haml │ │ └── steps │ │ │ ├── _expert_content.html.haml │ │ │ ├── _expert_subject_checkboxes.html.haml │ │ │ ├── _header.haml │ │ │ ├── _next_step.haml │ │ │ ├── _steps.haml │ │ │ ├── contact.html.haml │ │ │ ├── matches.html.haml │ │ │ └── needs.html.haml │ ├── shared_satisfactions │ │ ├── _callout.html.haml │ │ ├── _header.html.haml │ │ ├── _menu.html.haml │ │ ├── _need.haml │ │ ├── _need_card.haml │ │ ├── _search.html.haml │ │ ├── index.html.haml │ │ └── mark_as_seen.turbo_stream.haml │ ├── sitemap │ │ └── sitemap.html.haml │ ├── solicitations │ │ ├── _header.html.haml │ │ ├── _menu.html.haml │ │ ├── _retry_diagnosis.html.haml │ │ ├── _solicitation.haml │ │ ├── _solicitation_actions.html.haml │ │ ├── _solicitation_badges.html.haml │ │ ├── _tracking.haml │ │ ├── index.html.haml │ │ └── update_badges.js.haml │ ├── suivi_qualite │ │ ├── _filters.html.haml │ │ ├── _header.html.haml │ │ ├── _menu.html.haml │ │ ├── _refused_feedback_need.haml │ │ └── index.html.haml │ └── veille │ │ ├── _filters.html.haml │ │ ├── _header.html.haml │ │ ├── _menu.html.haml │ │ ├── starred_needs.haml │ │ └── taking_care_matches.haml │ ├── contacts │ └── needs_historic.html.haml │ ├── devise │ ├── invitations │ │ ├── edit.html.haml │ │ └── new.html.haml │ ├── mailer │ │ ├── invitation_instructions.mjml │ │ ├── invitation_instructions.text.erb │ │ ├── reset_password_instructions.mjml │ │ └── reset_password_instructions.text.erb │ ├── passwords │ │ ├── edit.html.haml │ │ └── new.html.haml │ ├── registrations │ │ └── edit.html.haml │ ├── sessions │ │ └── new.html.haml │ └── shared │ │ ├── _links.html.haml │ │ └── _user_fields.haml │ ├── experts │ ├── _expert.html.haml │ ├── _expert_feedbacks.haml │ ├── edit.html.haml │ └── subjects.html.haml │ ├── feedbacks │ ├── _feedback.haml │ ├── _form.html.haml │ └── create.js.haml │ ├── kaminari │ ├── _first_page.html.haml │ ├── _gap.html.haml │ ├── _last_page.html.haml │ ├── _next_page.html.haml │ ├── _page.html.haml │ ├── _paginator.html.haml │ └── _prev_page.html.haml │ ├── landings │ ├── landing_subjects │ │ └── _card.html.haml │ ├── landing_themes │ │ ├── _card.html.haml │ │ └── show.haml │ └── landings │ │ ├── _index_institutions.html.haml │ │ ├── _logos.html.haml │ │ ├── _multiple_steps.html.haml │ │ ├── _pde_partnership_mention.html.haml │ │ ├── _single_page.html.haml │ │ ├── home.haml │ │ ├── paused.haml │ │ └── show.haml │ ├── layouts │ ├── annuaire.haml │ ├── application.html.haml │ ├── expert_mailers.mjml │ ├── expert_mailers.text.erb │ ├── mailers.mjml │ ├── pages.html.haml │ ├── side_menu.html.haml │ ├── solicitation_form.html.haml │ └── user_tabs.html.haml │ ├── mailers │ ├── _expert_header.mjml │ ├── _footer.mjml │ ├── _footer.text.erb │ ├── _header.mjml │ ├── admin_mailer │ │ ├── failed_jobs.html.haml │ │ ├── send_csv.html.haml │ │ └── solicitation.haml │ ├── company_mailer │ │ ├── confirmation_solicitation.mjml │ │ ├── failed_need.mjml │ │ ├── intelligent_retention.mjml │ │ ├── not_yet_taken_care.mjml │ │ ├── notify_not_reachable.mjml │ │ ├── notify_taking_care.mjml │ │ ├── retention.mjml │ │ ├── satisfaction.mjml │ │ ├── solicitation_relaunch_company.mjml │ │ └── solicitation_relaunch_description.mjml │ ├── expert_mailer │ │ ├── _need_card.mjml │ │ ├── _need_card.text.erb │ │ ├── _remind_received_needs.mjml │ │ ├── _remind_received_needs.text.erb │ │ ├── _support_user_signature.mjml │ │ ├── _support_user_signature.text.erb │ │ ├── closing_good_practice.mjml │ │ ├── first_notification_help.mjml │ │ ├── first_notification_help.text.erb │ │ ├── last_chance.mjml │ │ ├── last_chance.text.erb │ │ ├── match_feedback.mjml │ │ ├── match_feedback.text.erb │ │ ├── notify_company_needs.mjml │ │ ├── notify_company_needs.text.erb │ │ ├── positioning_rate_reminders.mjml │ │ ├── re_engagement.mjml │ │ ├── remind_involvement.mjml │ │ └── remind_involvement.text.erb │ ├── solicitation_mailer │ │ ├── _footer.mjml │ │ ├── administrations_collectivites.mjml │ │ ├── bad_quality.mjml │ │ ├── carsat.mjml │ │ ├── creation.mjml │ │ ├── employee_labor_law.mjml │ │ ├── formalites_asso_agri_sci.mjml │ │ ├── intermediary.mjml │ │ ├── kbis_extract.mjml │ │ ├── mediateurs.mjml │ │ ├── moderation.mjml │ │ ├── no_expert.mjml │ │ ├── recruitment_foreign_worker.mjml │ │ ├── retirement_liberal_professions.mjml │ │ ├── sie_sip_declare_and_pay.mjml │ │ ├── sie_tva_and_others.mjml │ │ ├── siret.mjml │ │ └── tns_training.mjml │ └── user_mailer │ │ ├── antenne_activity_report.mjml │ │ ├── cooperation_activity_report.mjml │ │ └── invite_to_demo.mjml │ ├── manager │ ├── needs │ │ ├── _header.html.haml │ │ ├── _menu.html.haml │ │ ├── _search.haml │ │ └── index.html.haml │ └── stats │ │ ├── _stats_search.haml │ │ └── index.html.haml │ ├── matches │ ├── _match.haml │ └── update.js.haml │ ├── needs │ ├── _additional_experts.haml │ ├── _admin_need.html.haml │ ├── _empty_placeholder.html.haml │ ├── _focus_search_content.html.erb │ ├── _header.html.haml │ ├── _match_actions.html.haml │ ├── _menu.html.haml │ ├── _need.html.haml │ ├── _received_needs.haml │ ├── _search.haml │ ├── _star_btn.html.haml │ ├── add_match.js.haml │ ├── additional_experts.js.haml │ ├── index.html.haml │ ├── show.html.haml │ └── star.html.haml │ ├── pages │ ├── _breadcrumbs.html.haml │ ├── _cta_button.haml │ ├── _faq.html.haml │ ├── _flashes.haml │ ├── _footer.haml │ ├── _how_it_works_long.html.haml │ ├── _how_it_works_short.html.haml │ ├── _navbar.haml │ └── _tarteaucitron.html.erb │ ├── reminders │ ├── _header.html.haml │ ├── _needs.html.haml │ ├── _needs_badges.html.haml │ ├── experts │ │ ├── _expert_menu.html.haml │ │ ├── _filters.html.haml │ │ ├── _menu.html.haml │ │ ├── index.haml │ │ ├── quo.haml │ │ └── show.html.haml │ └── needs │ │ ├── _filters.html.haml │ │ ├── _menu.html.haml │ │ ├── add_feedback.js.haml │ │ ├── expert.html.haml │ │ ├── index.html.haml │ │ └── update_badges.js.haml │ ├── reports │ ├── _header.html.haml │ ├── _menu.html.haml │ ├── _search.haml │ ├── matches.html.haml │ └── stats.html.haml │ ├── shared │ ├── _breadcrumb.html.haml │ ├── _dsfr_api.html.erb │ ├── _environment_ribbon.html.haml │ ├── _favicon.html.erb │ ├── _flashes.html.haml │ ├── _iframe_resizer.html.erb │ ├── _matomo.html.erb │ ├── _password_tips.html.haml │ ├── _skiplinks.html.haml │ ├── _tarteaucitron.html.erb │ ├── _transcription.html.haml │ ├── _transcription_pde_tutoriel.html.haml │ ├── _user_impersonate.html.haml │ ├── _visibility_password_button.html.haml │ └── errors │ │ ├── 404.html.haml │ │ ├── 500.html.haml │ │ └── 500.xml.builder │ ├── sitemap │ ├── sitemap.html.haml │ └── sitemap.xml.builder │ ├── solicitations │ ├── _company_tile.html.haml │ ├── _facility_tile.html.haml │ ├── _header.html.haml │ ├── _iframe_footer.html.haml │ ├── _institutions_opco_tile.html.haml │ ├── _institutions_tiles.html.haml │ ├── _institutions_tiles_block.html.haml │ ├── _manual_step_company_link.html.haml │ ├── _next_button.html.haml │ ├── _previous_button.html.haml │ ├── _steps.html.haml │ ├── form_complete.html.haml │ ├── matomo_events │ │ ├── _matomo_company_contact_begin.html.erb │ │ ├── _matomo_company_contact_success.html.erb │ │ └── _tags_conversion.html.erb │ ├── search_company.html.haml │ ├── search_facility.html.haml │ ├── step_company.html.haml │ ├── step_company_search.html.haml │ ├── step_contact.html.haml │ └── step_description.html.haml │ ├── stats │ ├── _load_stats.html.haml │ ├── _main_stats_chart.haml │ ├── _ministats.haml │ ├── _skeleton_card.html.haml │ ├── public │ │ ├── _stats_params.haml │ │ └── index.haml │ └── team │ │ ├── _stats_params.haml │ │ ├── _tabs.html.haml │ │ └── index.html.haml │ ├── user_pages │ └── tutoriels.haml │ └── users │ ├── _header.html.haml │ ├── _menu.html.haml │ └── registrations │ ├── antenne.html.haml │ └── password.html.haml ├── babel.config.js ├── bin ├── brakeman ├── bundle ├── dev ├── parallel_rspec ├── rails ├── rake ├── rspec ├── rubocop ├── setup ├── spring ├── squasher └── update ├── config.ru ├── config ├── application.rb ├── boot.rb ├── brakeman.ignore ├── cable.yml ├── data │ ├── demo_planning.yml │ ├── idcc_to_opco.yml │ └── subject_answers.yml ├── database.example.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── i18n-tasks.yml ├── initializers │ ├── active_admin.rb │ ├── active_model_serializers.rb │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── caxslx.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── core_extensions.rb │ ├── custom_extensions.rb │ ├── devise.rb │ ├── filter_parameter_logging.rb │ ├── geocoder.rb │ ├── inflections.rb │ ├── kaminari_config.rb │ ├── mime_types.rb │ ├── mjml.rb │ ├── new_framework_defaults_7_0.rb │ ├── new_framework_defaults_7_2.rb │ ├── permissions_policy.rb │ ├── rack_attack.rb │ ├── rswag-ui.rb │ ├── rswag_api.rb │ ├── sendinblue.rb │ ├── sentry.rb │ ├── session_store.rb │ ├── sidekiq.rb │ ├── user_impersonate.rb │ ├── web_app_manifest.rb │ └── wrap_parameters.rb ├── locales │ ├── data │ │ ├── api_name.fr.yml │ │ ├── categories_juridiques.fr.yml │ │ ├── codes_departements.fr.yml │ │ ├── codes_effectif.fr.yml │ │ ├── codes_regions.fr.yml │ │ ├── equipe.fr.yml │ │ ├── faq.fr.yml │ │ ├── landing_subject_subtitle.fr.yml │ │ ├── libelles_naf.fr.yml │ │ ├── libelles_nafa.fr.yml │ │ ├── natures_entreprise.fr.yml │ │ ├── prefill_feedbacks.fr.yml │ │ └── temoignages.yml │ ├── devise.fr.yml │ ├── fr.yml │ ├── mailers.fr.yml │ ├── models.fr.yml │ └── views.fr.yml ├── puma.rb ├── rorvswild.yml ├── routes.rb ├── secrets.yml ├── sidekiq.yml ├── spring.rb ├── storage.yml └── webpack │ ├── base.js │ ├── config.js │ ├── development.js │ ├── production.js │ ├── test.js │ └── webpack.config.js ├── db ├── migrate │ ├── 20250107135215_create_territorial_zones.rb │ ├── 20250109094556_add_index_for_diagnoses_step_created_at.rb │ ├── 20250123101225_add_provenance_detail_to_solicitations.rb │ ├── 20250123141418_migrate_territories_to_territorial_zones.rb │ ├── 20250205165906_add_insee_code_to_facilities.rb │ ├── 20250219122842_add_display_matches_stats_to_cooperation.rb │ ├── 20250303155501_change_quarterly_report_to_activity_report.rb │ ├── 20250513130727_create_tih_questions.rb │ ├── 20250519095209_add_paused_at_to_landings.rb │ ├── 20250602123325_migrate_territories_for_themes.rb │ ├── 20250606113927_add_absence_end_at_to_users.rb │ ├── 20250618095527_add_external_to_cooperations.rb │ ├── 20250704084013_drop_referencement_coverage_table.rb │ ├── 20250708080921_create_user_rights_for_territories.rb │ ├── 20250728143011_add_logo_for_les_clubs_sportif_engages.rb │ ├── 20251027084019_not_null_logos.rb │ └── 20251125162726_new_report_for_cooperation_solicitations.rb ├── schema.rb └── seeds.rb ├── doc ├── 01-setup.md ├── 02-development.md ├── 03-deployment.md ├── 04-architecture.md ├── 05-gotchas.md ├── 06-maintenance.md ├── Diagram SubjectAnswers.jpg ├── browserstack-logo-600x315.png ├── domain_model.pdf ├── logo-PDE-lineaire.svg ├── logo-PDE.svg └── picto-PDE.svg ├── lib ├── api_adapters │ └── pde_adapter.rb ├── rswag │ └── ui │ │ └── CSP.rb └── tasks │ ├── anonymize.rake │ ├── anonymize_old_diagnoses.rake │ ├── auto_annotate_models.rake │ ├── auto_generate_diagram.rake │ ├── import_dump.rake │ ├── import_prod_to_staging.rake │ ├── lint.rake │ ├── lint_fix.rake │ ├── long_migration.rake │ ├── migration │ ├── .keep │ └── fix_arrondissements_territorial_zones.rake │ ├── migrations │ └── move_filters_to_institution.rake │ ├── push_to_production.rake │ ├── rattrapage_analyse_sollicitations.rake │ ├── rattrapage_api_rne.rake │ ├── staging_transform_data.rake │ ├── transfer_bizdev.rake │ ├── update_effectif_company.rake │ ├── update_effectif_facility.rake │ └── update_users_emails.rake ├── log └── .keep ├── package.json ├── public ├── .well-known │ └── security.txt ├── 503.html ├── 504.html ├── Brochure_Conseillers_Entreprises.pdf ├── DGEFP_decision_homologation_SI_PDE-v0.2.pdf ├── google7c9d162767dd90a2.html └── robots.txt ├── scalingo.json ├── spec ├── a11y │ ├── application │ │ ├── devise_spec.rb │ │ ├── needs_spec.rb │ │ ├── pages_spec.rb │ │ └── shared_satisfactions_spec.rb │ └── pages │ │ ├── about_spec.rb │ │ ├── landings_spec.rb │ │ ├── solicitation_form_spec.rb │ │ └── stats_spec.rb ├── api_helper.rb ├── controllers │ ├── annuaire │ │ ├── antennes_controller_spec.rb │ │ ├── institutions_controller_spec.rb │ │ ├── search_controller_spec.rb │ │ └── users_controller_spec.rb │ ├── badges_controller_spec.rb │ ├── companies_controller_spec.rb │ ├── conseiller │ │ ├── cooperations_controller_spec.rb │ │ ├── diagnoses │ │ │ └── steps_controller_spec.rb │ │ ├── diagnoses_controller_spec.rb │ │ ├── experts_controller_spec.rb │ │ ├── shared_satisfactions_controller_spec.rb │ │ ├── solicitations_controller_spec.rb │ │ ├── suivi_qualite_controller_spec.rb │ │ └── veille_controller_spec.rb │ ├── emails │ │ └── solicitations_controller_spec.rb │ ├── feedbacks_controller_spec.rb │ ├── landings │ │ ├── landing_themes_controller_spec.rb │ │ └── landings_controller_spec.rb │ ├── manager │ │ └── stats_controller_spec.rb │ ├── matches_controller_spec.rb │ ├── needs_controller_spec.rb │ ├── reminders │ │ ├── experts_controller_spec.rb │ │ ├── needs_controller_spec.rb │ │ └── reminders_registers_controller_spec.rb │ ├── reminders_actions_controller_spec.rb │ ├── shared_controller_spec.rb │ ├── sitemap_controller_spec.rb │ ├── solicitations_controller_spec.rb │ └── stats │ │ └── team_controller_spec.rb ├── factories │ ├── activity_report.rb │ ├── antennes.rb │ ├── api_keys.rb │ ├── badges.rb │ ├── categories.rb │ ├── communes.rb │ ├── companies.rb │ ├── company_satisfactions.rb │ ├── contacts.rb │ ├── cooperation.rb │ ├── cooperation_themes.rb │ ├── diagnoses.rb │ ├── email_retention.rb │ ├── experts.rb │ ├── experts_subjects.rb │ ├── facilities.rb │ ├── feedbacks.rb │ ├── institutions.rb │ ├── institutions_subjects.rb │ ├── landing_subjects.rb │ ├── landing_themes.rb │ ├── landings.rb │ ├── match_filter.rb │ ├── matches.rb │ ├── needs.rb │ ├── profil_pictures.rb │ ├── reminders_action.rb │ ├── reminders_registers.rb │ ├── shared_satisfactions.rb │ ├── solicitations.rb │ ├── spams.rb │ ├── subject_answer_groupings.rb │ ├── subject_answers.rb │ ├── subject_questions.rb │ ├── subjects.rb │ ├── territorial_zones.rb │ ├── territories.rb │ ├── themes.rb │ ├── user_rights.rb │ └── users.rb ├── features │ ├── admin_controller_feature_spec.rb │ ├── annuaire │ │ └── users_spec.rb │ ├── application_controller_feature_spec.rb │ ├── landings_spec.rb │ ├── manager │ │ └── stats_spec.rb │ ├── new_solicitation_js_feature_spec.rb │ ├── new_solicitation_no_js_feature_spec.rb │ ├── reminders │ │ ├── experts_feature_spec.rb │ │ └── needs_feature_spec.rb │ ├── reports │ │ └── reports_feature_spec.rb │ ├── shared_controller_feature_spec.rb │ ├── signin_spec.rb │ ├── solicitations │ │ └── send_generic_emails_spec.rb │ └── users │ │ ├── experts_controller_spec.rb │ │ ├── needs_feature_spec.rb │ │ └── registrations_controller_spec.rb ├── fixtures │ └── files │ │ ├── api_adapter_company.json │ │ ├── api_adapter_company_errors.json │ │ ├── api_adapter_facility.json │ │ ├── api_adapter_facility_errors.json │ │ ├── api_adresse_search_municipality.json │ │ ├── api_entreprise_401.json │ │ ├── api_entreprise_500.json │ │ ├── api_entreprise_effectifs_entreprise.json │ │ ├── api_entreprise_effectifs_etablissement.json │ │ ├── api_entreprise_entreprise.json │ │ ├── api_entreprise_entreprise_422.json │ │ ├── api_entreprise_entreprise_p_physique.json │ │ ├── api_entreprise_entreprises_artisanales_cma.json │ │ ├── api_entreprise_etablissement.json │ │ ├── api_entreprise_mandataires_sociaux.json │ │ ├── api_entreprise_rcs.json │ │ ├── api_entreprise_rm.json │ │ ├── api_france_competence_siret.json │ │ ├── api_france_competence_siret_99.json │ │ ├── api_insee_siret.json │ │ ├── api_insee_siret_400.json │ │ ├── api_insee_sirets_by_siren_formatted_data.json │ │ ├── api_insee_sirets_by_siren_many.json │ │ ├── api_insee_sirets_by_siren_one.json │ │ ├── api_recherche_entreprises_entreprise_request_data.json │ │ ├── api_recherche_entreprises_search_fulltext.json │ │ ├── api_recherche_entreprises_search_siret.json │ │ ├── api_rne_companies.json │ │ ├── api_rne_companies_404.json │ │ ├── api_rne_token.json │ │ ├── api_rne_token_401.json │ │ ├── csv_import │ │ ├── antennes-with-4-digits-insee-codes.csv │ │ ├── antennes-with-blank-rows.csv │ │ └── users-with-comma-in-emails.csv │ │ ├── entreprise_data_gouv_full_text.json │ │ ├── entreprise_data_gouv_siren.json │ │ └── geo_api_communes_78586.json ├── helpers │ ├── breadcrumbs_helper_spec.rb │ ├── companies_helper_spec.rb │ ├── diagnosis_helper_spec.rb │ ├── experts_helper_spec.rb │ ├── images_helper_spec.rb │ ├── nested_errors_helper_spec.rb │ ├── solicitation_helper_spec.rb │ └── stats_helper_spec.rb ├── jobs │ ├── abandon_needs_job_spec.rb │ ├── activity_reports │ │ ├── antenne_matches │ │ │ └── generate_job_spec.rb │ │ ├── antenne_stats │ │ │ └── generate_job_spec.rb │ │ ├── cooperation │ │ │ └── generate_job_spec.rb │ │ ├── cooperation_solicitations │ │ │ └── generate_job_spec.rb │ │ └── notify_antenne_managers_job_spec.rb │ ├── add_shared_satisfactions_job_spec.rb │ ├── admin │ │ ├── create_reminders_registers_job_spec.rb │ │ ├── purge_csv_exports_job_spec.rb │ │ └── send_failed_jobs_job_spec.rb │ ├── api │ │ └── api_keys_revoke_job_spec.rb │ ├── archive_expired_matches_job_spec.rb │ ├── company_emails │ │ ├── not_yet_taken_care_job_spec.rb │ │ ├── send_intelligent_retention_emails_job_spec.rb │ │ ├── send_retention_emails_job_spec.rb │ │ ├── send_satisfaction_emails_job_spec.rb │ │ ├── send_status_notification_job_spec.rb │ │ └── solicitations_relaunch_job_spec.rb │ ├── create_automatic_diagnosis_job_spec.rb │ ├── match_feedback_email_job_spec.rb │ ├── send_experts_reminders_job_spec.rb │ └── update_antenne_hierarchy_job_spec.rb ├── mailers │ ├── company_mailer_spec.rb │ ├── expert_mailer_spec.rb │ ├── previews │ │ ├── admin_mailer_preview.rb │ │ ├── company_mailer_preview.rb │ │ ├── devise_mailer_preview.rb │ │ ├── expert_mailer_preview.rb │ │ ├── solicitation_mailer_preview.rb │ │ └── user_mailer_preview.rb │ ├── shared_examples_for_an_email.rb │ ├── solicitation_mailer_spec.rb │ └── user_mailer_spec.rb ├── matchers │ └── matcher_skiplinks_ids_spec.rb ├── models │ ├── antenne_spec.rb │ ├── api_key_spec.rb │ ├── badge_spec.rb │ ├── company_satisfaction_spec.rb │ ├── company_spec.rb │ ├── concerns │ │ ├── archivable_spec.rb │ │ ├── categorie_juridique_spec.rb │ │ ├── involvement_concern_spec.rb │ │ ├── naf_code_spec.rb │ │ ├── person_concern_spec.rb │ │ ├── soft_deletable_spec.rb │ │ └── territory_needs_status_spec.rb │ ├── contact_spec.rb │ ├── cooperation_spec.rb │ ├── diagnosis_spec.rb │ ├── expert_spec.rb │ ├── expert_subject_spec.rb │ ├── facility_spec.rb │ ├── feedback_spec.rb │ ├── institution_spec.rb │ ├── institution_subject_spec.rb │ ├── landing_spec.rb │ ├── landing_subject_spec.rb │ ├── match_filter_spec.rb │ ├── match_spec.rb │ ├── need_spec.rb │ ├── profil_picture_spec.rb │ ├── record_extensions │ │ └── human_count_spec.rb │ ├── shared_satisfaction_spec.rb │ ├── solicitation_spec.rb │ ├── spam_spec.rb │ ├── subject_spec.rb │ ├── territorial_zone_spec.rb │ ├── theme_spec.rb │ ├── user_right_spec.rb │ └── user_spec.rb ├── policies │ ├── antenne_policy_spec.rb │ ├── contact_policy_spec.rb │ ├── cooperation_policy_spec.rb │ ├── diagnosis_policy_spec.rb │ ├── expert_policy_spec.rb │ ├── facility_policy_spec.rb │ ├── feedback_policy_spec.rb │ ├── manager │ │ ├── needs_policy_spec.rb │ │ └── stats_policy_spec.rb │ ├── match_policy_spec.rb │ ├── need_policy_spec.rb │ ├── report_policy_spec.rb │ ├── shared_satisfaction_policy_spec.rb │ ├── solicitation_policy_spec.rb │ ├── stats │ │ └── all_policy_spec.rb │ └── user_policy_spec.rb ├── rails_helper.rb ├── requests │ ├── api │ │ └── v1 │ │ │ ├── authentication_spec.rb │ │ │ ├── landing_subjects_spec.rb │ │ │ ├── landing_themes_spec.rb │ │ │ ├── landings_spec.rb │ │ │ └── solicitations_spec.rb │ ├── landings_spec.rb │ └── solicitations_spec.rb ├── services │ ├── activity_reports │ │ ├── generate │ │ │ ├── antenne_matches_spec.rb │ │ │ ├── antenne_stats_spec.rb │ │ │ ├── base_spec.rb │ │ │ ├── cooperation_solicitations_spec.rb │ │ │ └── cooperation_spec.rb │ │ ├── notify_antenne_managers_spec.rb │ │ └── notify_cooperation_managers_spec.rb │ ├── antenne_hierarchy_spec.rb │ ├── api │ │ ├── adresse │ │ │ └── search_municipality_spec.rb │ │ ├── api_entreprise │ │ │ ├── entreprise_spec.rb │ │ │ └── etablissement_spec.rb │ │ ├── france_competence │ │ │ └── siret_spec.rb │ │ ├── insee │ │ │ └── siret_spec.rb │ │ ├── recherche_entreprises │ │ │ └── search │ │ │ │ ├── fulltext_spec.rb │ │ │ │ └── siret_spec.rb │ │ └── rne │ │ │ ├── companies_spec.rb │ │ │ └── token_spec.rb │ ├── api_consumption │ │ ├── company_spec.rb │ │ ├── facility_spec.rb │ │ └── models │ │ │ ├── company │ │ │ └── api_entreprise_spec.rb │ │ │ ├── facility │ │ │ ├── api_entreprise_spec.rb │ │ │ └── api_insee_spec.rb │ │ │ └── facility_autocomplete │ │ │ ├── api_entreprise_spec.rb │ │ │ └── api_recherche_entreprises_spec.rb │ ├── build_antennes_collection_spec.rb │ ├── create_territorial_coverage_spec.rb │ ├── csv_export │ │ ├── antenne_exporter_spec.rb │ │ ├── feedback_exporter_spec.rb │ │ ├── match_exporter_spec.rb │ │ ├── solicitation_exporter_spec.rb │ │ └── user_exporter_spec.rb │ ├── csv_import │ │ ├── antenne_importer_spec.rb │ │ ├── base_importer_spec.rb │ │ └── user_importer_spec.rb │ ├── diagnosis_creation │ │ ├── create_automatic_diagnosis_spec.rb │ │ ├── create_matches_spec.rb │ │ ├── create_or_update_diagnosis_spec.rb │ │ ├── create_or_update_facility_and_company_spec.rb │ │ ├── find_relevant_expert_subjects_spec.rb │ │ ├── new_diagnosis_spec.rb │ │ └── steps_spec.rb │ ├── effectif │ │ ├── code_effectif_spec.rb │ │ └── format_spec.rb │ ├── format_siret_spec.rb │ ├── get_provenance_details_spec.rb │ ├── match_mailer_service_spec.rb │ ├── needs_service_spec.rb │ ├── query_from_entreprendre_spec.rb │ ├── reminders_service_spec.rb │ ├── search_facility │ │ ├── all_spec.rb │ │ └── diffusable_spec.rb │ ├── send_solicitation_generic_email_spec.rb │ ├── solicitations_relaunch_service_spec.rb │ ├── stats │ │ └── filters │ │ │ ├── companies_spec.rb │ │ │ ├── matches_spec.rb │ │ │ ├── needs_spec.rb │ │ │ └── solicitations_spec.rb │ └── time_duration_service │ │ ├── months_spec.rb │ │ └── quarters_spec.rb ├── spec_helper.rb ├── support │ ├── api_spec_helper.rb │ ├── axe │ │ └── matchers │ │ │ └── be_accessible.rb │ ├── controller_macros.rb │ ├── feature_macros.rb │ ├── pundit_spec_helper.rb │ ├── reminders_spec_helper.rb │ ├── split_helper.rb │ └── tasks.rb ├── swagger_helper.rb ├── system │ ├── annuaire_system_spec.rb │ ├── conseillers │ │ └── shared_satisfactions_system_spec.rb │ ├── diagnosis_system_spec.rb │ ├── manager │ │ └── needs_system_spec.rb │ ├── needs_system_spec.rb │ ├── pages_system_spec.rb │ └── users │ │ ├── invitations_controller_spec.rb │ │ └── passwords_controller_spec.rb ├── system_helper.rb ├── tasks │ └── anonymize_old_companies_spec.rb └── views │ ├── companies │ ├── needs.html.haml_spec.rb │ └── show.html.haml_spec.rb │ ├── conseiller │ ├── cooperations │ │ └── needs.html.haml_spec.rb │ └── diagnoses │ │ └── steps │ │ └── matches.html.haml_spec.rb │ ├── iframe_test_page.html │ ├── mailers │ └── expert_mailer │ │ └── notify_company_needs.html.haml_spec.rb │ ├── needs │ └── show.html.haml_spec.rb │ └── stats │ ├── public │ └── index.html.haml_spec.rb │ └── team │ └── index.html.haml_spec.rb ├── swagger └── v1 │ └── swagger.yaml ├── tmp └── .keep ├── vendor └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.buildpacks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/.buildpacks -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/.env.example -------------------------------------------------------------------------------- /.erdconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/.erdconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/config/rubocop_linter_action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/.github/config/rubocop_linter_action.yml -------------------------------------------------------------------------------- /.github/workflows/update-dependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/.github/workflows/update-dependencies.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/.gitignore -------------------------------------------------------------------------------- /.haml-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/.haml-lint.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.rspec_parallel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/.rspec_parallel -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.4.6 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.AGPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/LICENSE.AGPL.txt -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/Procfile -------------------------------------------------------------------------------- /Procfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/Procfile.dev -------------------------------------------------------------------------------- /Procfile.dev.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/Procfile.dev.example -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/Rakefile -------------------------------------------------------------------------------- /app/admin/antenne.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/antenne.rb -------------------------------------------------------------------------------- /app/admin/company.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/company.rb -------------------------------------------------------------------------------- /app/admin/company_satisfaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/company_satisfaction.rb -------------------------------------------------------------------------------- /app/admin/concerns/admin_archivable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/concerns/admin_archivable.rb -------------------------------------------------------------------------------- /app/admin/concerns/csv_exportable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/concerns/csv_exportable.rb -------------------------------------------------------------------------------- /app/admin/concerns/dynamically_filtrable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/concerns/dynamically_filtrable.rb -------------------------------------------------------------------------------- /app/admin/contact.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/contact.rb -------------------------------------------------------------------------------- /app/admin/cooperation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/cooperation.rb -------------------------------------------------------------------------------- /app/admin/diagnosis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/diagnosis.rb -------------------------------------------------------------------------------- /app/admin/duplicate_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/duplicate_user.rb -------------------------------------------------------------------------------- /app/admin/email_retentions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/email_retentions.rb -------------------------------------------------------------------------------- /app/admin/expert.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/expert.rb -------------------------------------------------------------------------------- /app/admin/facility.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/facility.rb -------------------------------------------------------------------------------- /app/admin/feedback.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/feedback.rb -------------------------------------------------------------------------------- /app/admin/helpers/admin_link_to.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/helpers/admin_link_to.rb -------------------------------------------------------------------------------- /app/admin/helpers/csv_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/helpers/csv_builder.rb -------------------------------------------------------------------------------- /app/admin/helpers/links.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/helpers/links.rb -------------------------------------------------------------------------------- /app/admin/helpers/territorial_zones_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/helpers/territorial_zones_helper.rb -------------------------------------------------------------------------------- /app/admin/institution.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/institution.rb -------------------------------------------------------------------------------- /app/admin/landing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/landing.rb -------------------------------------------------------------------------------- /app/admin/landing_theme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/landing_theme.rb -------------------------------------------------------------------------------- /app/admin/logo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/logo.rb -------------------------------------------------------------------------------- /app/admin/match.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/match.rb -------------------------------------------------------------------------------- /app/admin/need.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/need.rb -------------------------------------------------------------------------------- /app/admin/patches/data_access.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/patches/data_access.rb -------------------------------------------------------------------------------- /app/admin/patches/scopes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/patches/scopes.rb -------------------------------------------------------------------------------- /app/admin/profil_picture.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/profil_picture.rb -------------------------------------------------------------------------------- /app/admin/reassign_matches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/reassign_matches.rb -------------------------------------------------------------------------------- /app/admin/sidekiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/sidekiq.rb -------------------------------------------------------------------------------- /app/admin/solicitation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/solicitation.rb -------------------------------------------------------------------------------- /app/admin/spam.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/spam.rb -------------------------------------------------------------------------------- /app/admin/subject.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/subject.rb -------------------------------------------------------------------------------- /app/admin/theme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/theme.rb -------------------------------------------------------------------------------- /app/admin/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/admin/user.rb -------------------------------------------------------------------------------- /app/assets/builds/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/cooperations/dreets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/cooperations/dreets.png -------------------------------------------------------------------------------- /app/assets/images/cooperations/tihm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/cooperations/tihm.png -------------------------------------------------------------------------------- /app/assets/images/cooperations/zetwal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/cooperations/zetwal.png -------------------------------------------------------------------------------- /app/assets/images/equipe/adeline.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/equipe/adeline.webp -------------------------------------------------------------------------------- /app/assets/images/equipe/christophe.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/equipe/christophe.webp -------------------------------------------------------------------------------- /app/assets/images/equipe/claire.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/equipe/claire.webp -------------------------------------------------------------------------------- /app/assets/images/equipe/julien.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/equipe/julien.webp -------------------------------------------------------------------------------- /app/assets/images/equipe/lucien.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/equipe/lucien.webp -------------------------------------------------------------------------------- /app/assets/images/equipe/ludivine.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/equipe/ludivine.webp -------------------------------------------------------------------------------- /app/assets/images/equipe/mathieu.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/equipe/mathieu.webp -------------------------------------------------------------------------------- /app/assets/images/equipe/melanie.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/equipe/melanie.webp -------------------------------------------------------------------------------- /app/assets/images/equipe/niels.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/equipe/niels.webp -------------------------------------------------------------------------------- /app/assets/images/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/favicon/favicon.ico -------------------------------------------------------------------------------- /app/assets/images/favicon/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/favicon/favicon.svg -------------------------------------------------------------------------------- /app/assets/images/favicon/mstile-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/favicon/mstile-192x192.png -------------------------------------------------------------------------------- /app/assets/images/home-430w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/home-430w.png -------------------------------------------------------------------------------- /app/assets/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/home.png -------------------------------------------------------------------------------- /app/assets/images/home.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/home.webp -------------------------------------------------------------------------------- /app/assets/images/info-alert-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/info-alert-orange.png -------------------------------------------------------------------------------- /app/assets/images/info-alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/info-alert.png -------------------------------------------------------------------------------- /app/assets/images/institutions/ademe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/institutions/ademe.png -------------------------------------------------------------------------------- /app/assets/images/institutions/adie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/institutions/adie.png -------------------------------------------------------------------------------- /app/assets/images/institutions/agefiph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/institutions/agefiph.png -------------------------------------------------------------------------------- /app/assets/images/institutions/anact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/institutions/anact.svg -------------------------------------------------------------------------------- /app/assets/images/institutions/apec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/institutions/apec.png -------------------------------------------------------------------------------- /app/assets/images/institutions/aract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/institutions/aract.png -------------------------------------------------------------------------------- /app/assets/images/institutions/bpi-france.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/institutions/bpi-france.png -------------------------------------------------------------------------------- /app/assets/images/institutions/caf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/institutions/caf.png -------------------------------------------------------------------------------- /app/assets/images/institutions/cap-emploi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/institutions/cap-emploi.png -------------------------------------------------------------------------------- /app/assets/images/institutions/carsat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/institutions/carsat.png -------------------------------------------------------------------------------- /app/assets/images/institutions/cci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/institutions/cci.png -------------------------------------------------------------------------------- /app/assets/images/institutions/cma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/institutions/cma.png -------------------------------------------------------------------------------- /app/assets/images/institutions/dge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/institutions/dge.png -------------------------------------------------------------------------------- /app/assets/images/institutions/dgefp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/institutions/dgefp.png -------------------------------------------------------------------------------- /app/assets/images/institutions/dgfip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/institutions/dgfip.png -------------------------------------------------------------------------------- /app/assets/images/institutions/douanes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/institutions/douanes.png -------------------------------------------------------------------------------- /app/assets/images/institutions/dreets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/institutions/dreets.png -------------------------------------------------------------------------------- /app/assets/images/institutions/faf-tt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/institutions/faf-tt.png -------------------------------------------------------------------------------- /app/assets/images/institutions/geiq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/institutions/geiq.png -------------------------------------------------------------------------------- /app/assets/images/institutions/inpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/institutions/inpi.png -------------------------------------------------------------------------------- /app/assets/images/institutions/linklusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/institutions/linklusion.png -------------------------------------------------------------------------------- /app/assets/images/institutions/ocapiat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/institutions/ocapiat.png -------------------------------------------------------------------------------- /app/assets/images/institutions/opco_2i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/institutions/opco_2i.png -------------------------------------------------------------------------------- /app/assets/images/institutions/opco_afdas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/institutions/opco_afdas.png -------------------------------------------------------------------------------- /app/assets/images/institutions/opco_akto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/institutions/opco_akto.png -------------------------------------------------------------------------------- /app/assets/images/institutions/opco_atlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/institutions/opco_atlas.png -------------------------------------------------------------------------------- /app/assets/images/institutions/opco_sante.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/institutions/opco_sante.png -------------------------------------------------------------------------------- /app/assets/images/institutions/opcommerce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/institutions/opcommerce.png -------------------------------------------------------------------------------- /app/assets/images/institutions/urssaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/institutions/urssaf.png -------------------------------------------------------------------------------- /app/assets/images/je-donne-mon-avis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/je-donne-mon-avis.svg -------------------------------------------------------------------------------- /app/assets/images/logo-ce.old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/logo-ce.old.png -------------------------------------------------------------------------------- /app/assets/images/logo-ce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/logo-ce.png -------------------------------------------------------------------------------- /app/assets/images/picto1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/picto1.png -------------------------------------------------------------------------------- /app/assets/images/picto2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/picto2.png -------------------------------------------------------------------------------- /app/assets/images/picto3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/picto3.png -------------------------------------------------------------------------------- /app/assets/images/pictos-dsfr/city-hall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/pictos-dsfr/city-hall.svg -------------------------------------------------------------------------------- /app/assets/images/pictos-dsfr/document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/pictos-dsfr/document.svg -------------------------------------------------------------------------------- /app/assets/images/pictos-dsfr/internet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/pictos-dsfr/internet.svg -------------------------------------------------------------------------------- /app/assets/images/regions/bretagne.old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/regions/bretagne.old.png -------------------------------------------------------------------------------- /app/assets/images/regions/hauts-de-france.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/regions/hauts-de-france.png -------------------------------------------------------------------------------- /app/assets/images/regions/ile-de-france.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/regions/ile-de-france.png -------------------------------------------------------------------------------- /app/assets/images/regions/martinique.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/regions/martinique.png -------------------------------------------------------------------------------- /app/assets/images/temoignages/codetics.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/temoignages/codetics.jpg -------------------------------------------------------------------------------- /app/assets/images/temoignages/eurofins.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/temoignages/eurofins.jpg -------------------------------------------------------------------------------- /app/assets/images/temoignages/eurofins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/temoignages/eurofins.png -------------------------------------------------------------------------------- /app/assets/images/temoignages/excelhemp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/temoignages/excelhemp.jpg -------------------------------------------------------------------------------- /app/assets/images/temoignages/paint-me-up.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/temoignages/paint-me-up.jpg -------------------------------------------------------------------------------- /app/assets/images/temoignages/vieux-four.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/temoignages/vieux-four.jpg -------------------------------------------------------------------------------- /app/assets/images/tuto/bandeau-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/tuto/bandeau-vert.png -------------------------------------------------------------------------------- /app/assets/images/tuto/boutons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/tuto/boutons.png -------------------------------------------------------------------------------- /app/assets/images/tuto/experts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/tuto/experts.png -------------------------------------------------------------------------------- /app/assets/images/tuto/haut-de-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/images/tuto/haut-de-page.png -------------------------------------------------------------------------------- /app/assets/javascripts/active_admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/javascripts/active_admin.js -------------------------------------------------------------------------------- /app/assets/javascripts/admin/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/javascripts/admin/custom.js -------------------------------------------------------------------------------- /app/assets/javascripts/pages/matomo_events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/javascripts/pages/matomo_events.js -------------------------------------------------------------------------------- /app/assets/stylesheets/active_admin.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/stylesheets/active_admin.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/application.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/stylesheets/application.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/application/steps.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/stylesheets/application/steps.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/application/tuto.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/stylesheets/application/tuto.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/components/cards.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/stylesheets/components/cards.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/components/charts.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/stylesheets/components/charts.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/components/forms.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/stylesheets/components/forms.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/components/labels.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/stylesheets/components/labels.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/components/modals.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/stylesheets/components/modals.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/components/table.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/stylesheets/components/table.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/components/tabs.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/stylesheets/components/tabs.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/components/tags.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/stylesheets/components/tags.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/components/tiles.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/stylesheets/components/tiles.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/mailers.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/stylesheets/mailers.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/pages.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/stylesheets/pages.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/pages/home.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/stylesheets/pages/home.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/pages/landings.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/stylesheets/pages/landings.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/pages/pages.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/stylesheets/pages/pages.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/pages/stats.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/stylesheets/pages/stats.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/shared/base.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/stylesheets/shared/base.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/shared/typo.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/stylesheets/shared/typo.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/shared/utilities.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/assets/stylesheets/shared/utilities.sass -------------------------------------------------------------------------------- /app/controllers/about_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/controllers/about_controller.rb -------------------------------------------------------------------------------- /app/controllers/annuaire/base_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/controllers/annuaire/base_controller.rb -------------------------------------------------------------------------------- /app/controllers/annuaire/search_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/controllers/annuaire/search_controller.rb -------------------------------------------------------------------------------- /app/controllers/annuaire/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/controllers/annuaire/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/base_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/controllers/api/v1/base_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/badges_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/controllers/badges_controller.rb -------------------------------------------------------------------------------- /app/controllers/companies_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/controllers/companies_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/geocoder_ip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/controllers/concerns/geocoder_ip.rb -------------------------------------------------------------------------------- /app/controllers/concerns/iframe_prefix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/controllers/concerns/iframe_prefix.rb -------------------------------------------------------------------------------- /app/controllers/concerns/inbox.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/controllers/concerns/inbox.rb -------------------------------------------------------------------------------- /app/controllers/concerns/manager_filters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/controllers/concerns/manager_filters.rb -------------------------------------------------------------------------------- /app/controllers/concerns/persisted_search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/controllers/concerns/persisted_search.rb -------------------------------------------------------------------------------- /app/controllers/concerns/stats_utilities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/controllers/concerns/stats_utilities.rb -------------------------------------------------------------------------------- /app/controllers/contacts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/controllers/contacts_controller.rb -------------------------------------------------------------------------------- /app/controllers/experts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/controllers/experts_controller.rb -------------------------------------------------------------------------------- /app/controllers/feedbacks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/controllers/feedbacks_controller.rb -------------------------------------------------------------------------------- /app/controllers/landings/base_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/controllers/landings/base_controller.rb -------------------------------------------------------------------------------- /app/controllers/manager/needs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/controllers/manager/needs_controller.rb -------------------------------------------------------------------------------- /app/controllers/manager/stats_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/controllers/manager/stats_controller.rb -------------------------------------------------------------------------------- /app/controllers/matches_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/controllers/matches_controller.rb -------------------------------------------------------------------------------- /app/controllers/needs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/controllers/needs_controller.rb -------------------------------------------------------------------------------- /app/controllers/pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/controllers/pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/reminders/base_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/controllers/reminders/base_controller.rb -------------------------------------------------------------------------------- /app/controllers/reports_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/controllers/reports_controller.rb -------------------------------------------------------------------------------- /app/controllers/shared_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/controllers/shared_controller.rb -------------------------------------------------------------------------------- /app/controllers/sitemap_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/controllers/sitemap_controller.rb -------------------------------------------------------------------------------- /app/controllers/stats/base_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/controllers/stats/base_controller.rb -------------------------------------------------------------------------------- /app/controllers/stats/public_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/controllers/stats/public_controller.rb -------------------------------------------------------------------------------- /app/controllers/stats/team_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/controllers/stats/team_controller.rb -------------------------------------------------------------------------------- /app/controllers/user_pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/controllers/user_pages_controller.rb -------------------------------------------------------------------------------- /app/front/javascripts/application/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/front/javascripts/application/index.js -------------------------------------------------------------------------------- /app/front/javascripts/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/front/javascripts/pages/index.js -------------------------------------------------------------------------------- /app/front/javascripts/pages/navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/front/javascripts/pages/navbar.js -------------------------------------------------------------------------------- /app/front/javascripts/shared/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/front/javascripts/shared/index.js -------------------------------------------------------------------------------- /app/front/javascripts/shared/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/front/javascripts/shared/polyfills.js -------------------------------------------------------------------------------- /app/front/javascripts/shared/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/front/javascripts/shared/utils.js -------------------------------------------------------------------------------- /app/front/packs/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/front/packs/application.js -------------------------------------------------------------------------------- /app/front/packs/gouvfr-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/front/packs/gouvfr-module.js -------------------------------------------------------------------------------- /app/front/packs/gouvfr-nomodule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/front/packs/gouvfr-nomodule.js -------------------------------------------------------------------------------- /app/front/packs/pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/front/packs/pages.js -------------------------------------------------------------------------------- /app/helpers/annuaire_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/helpers/annuaire_helper.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/badges_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/helpers/badges_helper.rb -------------------------------------------------------------------------------- /app/helpers/breadcrumbs_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/helpers/breadcrumbs_helper.rb -------------------------------------------------------------------------------- /app/helpers/companies_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/helpers/companies_helper.rb -------------------------------------------------------------------------------- /app/helpers/diagnosis_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/helpers/diagnosis_helper.rb -------------------------------------------------------------------------------- /app/helpers/experts_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/helpers/experts_helper.rb -------------------------------------------------------------------------------- /app/helpers/images_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/helpers/images_helper.rb -------------------------------------------------------------------------------- /app/helpers/institutions_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/helpers/institutions_helper.rb -------------------------------------------------------------------------------- /app/helpers/mailto_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/helpers/mailto_helper.rb -------------------------------------------------------------------------------- /app/helpers/needs_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/helpers/needs_helper.rb -------------------------------------------------------------------------------- /app/helpers/nested_errors_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/helpers/nested_errors_helper.rb -------------------------------------------------------------------------------- /app/helpers/page_infos_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/helpers/page_infos_helper.rb -------------------------------------------------------------------------------- /app/helpers/person_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/helpers/person_helper.rb -------------------------------------------------------------------------------- /app/helpers/regions_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/helpers/regions_helper.rb -------------------------------------------------------------------------------- /app/helpers/regions_options_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/helpers/regions_options_helper.rb -------------------------------------------------------------------------------- /app/helpers/reminders_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/helpers/reminders_helper.rb -------------------------------------------------------------------------------- /app/helpers/scripts_snippets_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/helpers/scripts_snippets_helper.rb -------------------------------------------------------------------------------- /app/helpers/search_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/helpers/search_helper.rb -------------------------------------------------------------------------------- /app/helpers/seo_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/helpers/seo_helper.rb -------------------------------------------------------------------------------- /app/helpers/sitemap_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/helpers/sitemap_helper.rb -------------------------------------------------------------------------------- /app/helpers/solicitation_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/helpers/solicitation_helper.rb -------------------------------------------------------------------------------- /app/helpers/stats_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/helpers/stats_helper.rb -------------------------------------------------------------------------------- /app/helpers/status_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/helpers/status_helper.rb -------------------------------------------------------------------------------- /app/helpers/subject_questions_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/helpers/subject_questions_helper.rb -------------------------------------------------------------------------------- /app/helpers/user_tabs_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/helpers/user_tabs_helper.rb -------------------------------------------------------------------------------- /app/jobs/abandon_needs_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/jobs/abandon_needs_job.rb -------------------------------------------------------------------------------- /app/jobs/add_shared_satisfactions_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/jobs/add_shared_satisfactions_job.rb -------------------------------------------------------------------------------- /app/jobs/admin/purge_csv_exports_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/jobs/admin/purge_csv_exports_job.rb -------------------------------------------------------------------------------- /app/jobs/admin/send_failed_jobs_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/jobs/admin/send_failed_jobs_job.rb -------------------------------------------------------------------------------- /app/jobs/api/api_keys_revoke_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/jobs/api/api_keys_revoke_job.rb -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | retry_on Net::SMTPServerBusy 3 | end 4 | -------------------------------------------------------------------------------- /app/jobs/archive_expired_matches_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/jobs/archive_expired_matches_job.rb -------------------------------------------------------------------------------- /app/jobs/create_automatic_diagnosis_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/jobs/create_automatic_diagnosis_job.rb -------------------------------------------------------------------------------- /app/jobs/create_shared_satisfaction_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/jobs/create_shared_satisfaction_job.rb -------------------------------------------------------------------------------- /app/jobs/csv_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/jobs/csv_job.rb -------------------------------------------------------------------------------- /app/jobs/erase_past_absences_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/jobs/erase_past_absences_job.rb -------------------------------------------------------------------------------- /app/jobs/match_feedback_email_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/jobs/match_feedback_email_job.rb -------------------------------------------------------------------------------- /app/jobs/send_experts_reminders_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/jobs/send_experts_reminders_job.rb -------------------------------------------------------------------------------- /app/jobs/update_antenne_hierarchy_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/jobs/update_antenne_hierarchy_job.rb -------------------------------------------------------------------------------- /app/mailers/admin_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/mailers/admin_mailer.rb -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/mailers/company_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/mailers/company_mailer.rb -------------------------------------------------------------------------------- /app/mailers/custom_devise_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/mailers/custom_devise_mailer.rb -------------------------------------------------------------------------------- /app/mailers/expert_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/mailers/expert_mailer.rb -------------------------------------------------------------------------------- /app/mailers/solicitation_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/mailers/solicitation_mailer.rb -------------------------------------------------------------------------------- /app/mailers/user_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/mailers/user_mailer.rb -------------------------------------------------------------------------------- /app/models/activity_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/activity_report.rb -------------------------------------------------------------------------------- /app/models/antenne.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/antenne.rb -------------------------------------------------------------------------------- /app/models/api_key.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/api_key.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/badge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/badge.rb -------------------------------------------------------------------------------- /app/models/badge_badgeable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/badge_badgeable.rb -------------------------------------------------------------------------------- /app/models/category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/category.rb -------------------------------------------------------------------------------- /app/models/clockwork.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/clockwork.rb -------------------------------------------------------------------------------- /app/models/commune.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/commune.rb -------------------------------------------------------------------------------- /app/models/company.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/company.rb -------------------------------------------------------------------------------- /app/models/company_satisfaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/company_satisfaction.rb -------------------------------------------------------------------------------- /app/models/concerns/archivable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/concerns/archivable.rb -------------------------------------------------------------------------------- /app/models/concerns/categorie_juridique.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/concerns/categorie_juridique.rb -------------------------------------------------------------------------------- /app/models/concerns/involvement_concern.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/concerns/involvement_concern.rb -------------------------------------------------------------------------------- /app/models/concerns/mandatory_answers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/concerns/mandatory_answers.rb -------------------------------------------------------------------------------- /app/models/concerns/many_communes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/concerns/many_communes.rb -------------------------------------------------------------------------------- /app/models/concerns/naf_code.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/concerns/naf_code.rb -------------------------------------------------------------------------------- /app/models/concerns/person_concern.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/concerns/person_concern.rb -------------------------------------------------------------------------------- /app/models/concerns/range_scopes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/concerns/range_scopes.rb -------------------------------------------------------------------------------- /app/models/concerns/soft_deletable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/concerns/soft_deletable.rb -------------------------------------------------------------------------------- /app/models/concerns/with_effectif.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/concerns/with_effectif.rb -------------------------------------------------------------------------------- /app/models/concerns/with_slug.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/concerns/with_slug.rb -------------------------------------------------------------------------------- /app/models/concerns/with_subject.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/concerns/with_subject.rb -------------------------------------------------------------------------------- /app/models/concerns/with_support_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/concerns/with_support_user.rb -------------------------------------------------------------------------------- /app/models/contact.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/contact.rb -------------------------------------------------------------------------------- /app/models/cooperation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/cooperation.rb -------------------------------------------------------------------------------- /app/models/cooperation_theme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/cooperation_theme.rb -------------------------------------------------------------------------------- /app/models/diagnosis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/diagnosis.rb -------------------------------------------------------------------------------- /app/models/email_retention.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/email_retention.rb -------------------------------------------------------------------------------- /app/models/expert.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/expert.rb -------------------------------------------------------------------------------- /app/models/expert_subject.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/expert_subject.rb -------------------------------------------------------------------------------- /app/models/facility.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/facility.rb -------------------------------------------------------------------------------- /app/models/feedback.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/feedback.rb -------------------------------------------------------------------------------- /app/models/institution.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/institution.rb -------------------------------------------------------------------------------- /app/models/institution_subject.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/institution_subject.rb -------------------------------------------------------------------------------- /app/models/landing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/landing.rb -------------------------------------------------------------------------------- /app/models/landing_joint_theme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/landing_joint_theme.rb -------------------------------------------------------------------------------- /app/models/landing_subject.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/landing_subject.rb -------------------------------------------------------------------------------- /app/models/landing_theme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/landing_theme.rb -------------------------------------------------------------------------------- /app/models/logo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/logo.rb -------------------------------------------------------------------------------- /app/models/match.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/match.rb -------------------------------------------------------------------------------- /app/models/match_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/match_filter.rb -------------------------------------------------------------------------------- /app/models/need.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/need.rb -------------------------------------------------------------------------------- /app/models/profil_picture.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/profil_picture.rb -------------------------------------------------------------------------------- /app/models/record_extensions/random.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/record_extensions/random.rb -------------------------------------------------------------------------------- /app/models/reminders_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/reminders_action.rb -------------------------------------------------------------------------------- /app/models/reminders_register.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/reminders_register.rb -------------------------------------------------------------------------------- /app/models/shared_satisfaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/shared_satisfaction.rb -------------------------------------------------------------------------------- /app/models/solicitation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/solicitation.rb -------------------------------------------------------------------------------- /app/models/spam.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/spam.rb -------------------------------------------------------------------------------- /app/models/subject.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/subject.rb -------------------------------------------------------------------------------- /app/models/subject_answer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/subject_answer.rb -------------------------------------------------------------------------------- /app/models/subject_answer/filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/subject_answer/filter.rb -------------------------------------------------------------------------------- /app/models/subject_answer/item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/subject_answer/item.rb -------------------------------------------------------------------------------- /app/models/subject_answer_grouping.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/subject_answer_grouping.rb -------------------------------------------------------------------------------- /app/models/subject_question.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/subject_question.rb -------------------------------------------------------------------------------- /app/models/territorial_zone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/territorial_zone.rb -------------------------------------------------------------------------------- /app/models/territory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/territory.rb -------------------------------------------------------------------------------- /app/models/theme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/theme.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/user_right.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/models/user_right.rb -------------------------------------------------------------------------------- /app/policies/antenne_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/policies/antenne_policy.rb -------------------------------------------------------------------------------- /app/policies/application_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/policies/application_policy.rb -------------------------------------------------------------------------------- /app/policies/contact_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/policies/contact_policy.rb -------------------------------------------------------------------------------- /app/policies/cooperation_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/policies/cooperation_policy.rb -------------------------------------------------------------------------------- /app/policies/csv_export_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/policies/csv_export_policy.rb -------------------------------------------------------------------------------- /app/policies/diagnosis_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/policies/diagnosis_policy.rb -------------------------------------------------------------------------------- /app/policies/expert_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/policies/expert_policy.rb -------------------------------------------------------------------------------- /app/policies/facility_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/policies/facility_policy.rb -------------------------------------------------------------------------------- /app/policies/feedback_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/policies/feedback_policy.rb -------------------------------------------------------------------------------- /app/policies/institution_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/policies/institution_policy.rb -------------------------------------------------------------------------------- /app/policies/manager/needs_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/policies/manager/needs_policy.rb -------------------------------------------------------------------------------- /app/policies/manager/stats_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/policies/manager/stats_policy.rb -------------------------------------------------------------------------------- /app/policies/match_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/policies/match_policy.rb -------------------------------------------------------------------------------- /app/policies/need_done_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/policies/need_done_policy.rb -------------------------------------------------------------------------------- /app/policies/need_in_progress_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/policies/need_in_progress_policy.rb -------------------------------------------------------------------------------- /app/policies/need_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/policies/need_policy.rb -------------------------------------------------------------------------------- /app/policies/report_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/policies/report_policy.rb -------------------------------------------------------------------------------- /app/policies/shared_satisfaction_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/policies/shared_satisfaction_policy.rb -------------------------------------------------------------------------------- /app/policies/solicitation_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/policies/solicitation_policy.rb -------------------------------------------------------------------------------- /app/policies/stats/all_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/policies/stats/all_policy.rb -------------------------------------------------------------------------------- /app/policies/user_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/policies/user_policy.rb -------------------------------------------------------------------------------- /app/services/antenne_hierarchy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/antenne_hierarchy.rb -------------------------------------------------------------------------------- /app/services/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/api.rb -------------------------------------------------------------------------------- /app/services/api/api_entreprise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/api/api_entreprise.rb -------------------------------------------------------------------------------- /app/services/api/france_competence.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/api/france_competence.rb -------------------------------------------------------------------------------- /app/services/api/insee.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/api/insee.rb -------------------------------------------------------------------------------- /app/services/api/insee/siret.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/api/insee/siret.rb -------------------------------------------------------------------------------- /app/services/api/insee/sirets_by_siren.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/api/insee/sirets_by_siren.rb -------------------------------------------------------------------------------- /app/services/api/recherche_entreprises.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/api/recherche_entreprises.rb -------------------------------------------------------------------------------- /app/services/api/rne.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/api/rne.rb -------------------------------------------------------------------------------- /app/services/api/rne/companies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/api/rne/companies.rb -------------------------------------------------------------------------------- /app/services/api/rne/token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/api/rne/token.rb -------------------------------------------------------------------------------- /app/services/api_consumption/company.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/api_consumption/company.rb -------------------------------------------------------------------------------- /app/services/api_consumption/facility.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/api_consumption/facility.rb -------------------------------------------------------------------------------- /app/services/api_geo/query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/api_geo/query.rb -------------------------------------------------------------------------------- /app/services/build_antennes_collection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/build_antennes_collection.rb -------------------------------------------------------------------------------- /app/services/check_password_complexity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/check_password_complexity.rb -------------------------------------------------------------------------------- /app/services/csv_export.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/csv_export.rb -------------------------------------------------------------------------------- /app/services/csv_export/base_exporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/csv_export/base_exporter.rb -------------------------------------------------------------------------------- /app/services/csv_export/match_exporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/csv_export/match_exporter.rb -------------------------------------------------------------------------------- /app/services/csv_export/user_exporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/csv_export/user_exporter.rb -------------------------------------------------------------------------------- /app/services/csv_import.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/csv_import.rb -------------------------------------------------------------------------------- /app/services/csv_import/base_importer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/csv_import/base_importer.rb -------------------------------------------------------------------------------- /app/services/csv_import/user_importer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/csv_import/user_importer.rb -------------------------------------------------------------------------------- /app/services/demo_planning.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/demo_planning.rb -------------------------------------------------------------------------------- /app/services/diagnosis_creation/steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/diagnosis_creation/steps.rb -------------------------------------------------------------------------------- /app/services/effectif/code_effectif.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/effectif/code_effectif.rb -------------------------------------------------------------------------------- /app/services/effectif/effectif_range.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/effectif/effectif_range.rb -------------------------------------------------------------------------------- /app/services/effectif/effectifs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/effectif/effectifs.rb -------------------------------------------------------------------------------- /app/services/effectif/format.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/effectif/format.rb -------------------------------------------------------------------------------- /app/services/faq_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/faq_generator.rb -------------------------------------------------------------------------------- /app/services/format_insee_codes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/format_insee_codes.rb -------------------------------------------------------------------------------- /app/services/format_siret.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/format_siret.rb -------------------------------------------------------------------------------- /app/services/get_provenance_details.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/get_provenance_details.rb -------------------------------------------------------------------------------- /app/services/match_mailer_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/match_mailer_service.rb -------------------------------------------------------------------------------- /app/services/needs_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/needs_service.rb -------------------------------------------------------------------------------- /app/services/query_from_entreprendre.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/query_from_entreprendre.rb -------------------------------------------------------------------------------- /app/services/region_ordering_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/region_ordering_service.rb -------------------------------------------------------------------------------- /app/services/reminders_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/reminders_service.rb -------------------------------------------------------------------------------- /app/services/search_facility/all.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/search_facility/all.rb -------------------------------------------------------------------------------- /app/services/search_facility/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/search_facility/base.rb -------------------------------------------------------------------------------- /app/services/search_facility/diffusable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/search_facility/diffusable.rb -------------------------------------------------------------------------------- /app/services/sitemap_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/sitemap_generator.rb -------------------------------------------------------------------------------- /app/services/stats/acquisitions/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/stats/acquisitions/base.rb -------------------------------------------------------------------------------- /app/services/stats/all.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/stats/all.rb -------------------------------------------------------------------------------- /app/services/stats/base_stats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/stats/base_stats.rb -------------------------------------------------------------------------------- /app/services/stats/filters/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/stats/filters/base.rb -------------------------------------------------------------------------------- /app/services/stats/filters/companies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/stats/filters/companies.rb -------------------------------------------------------------------------------- /app/services/stats/filters/matches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/stats/filters/matches.rb -------------------------------------------------------------------------------- /app/services/stats/filters/needs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/stats/filters/needs.rb -------------------------------------------------------------------------------- /app/services/stats/matches/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/stats/matches/base.rb -------------------------------------------------------------------------------- /app/services/stats/matches/done.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/stats/matches/done.rb -------------------------------------------------------------------------------- /app/services/stats/matches/done_no_help.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/stats/matches/done_no_help.rb -------------------------------------------------------------------------------- /app/services/stats/matches/not_for_me.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/stats/matches/not_for_me.rb -------------------------------------------------------------------------------- /app/services/stats/matches/positioning.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/stats/matches/positioning.rb -------------------------------------------------------------------------------- /app/services/stats/matches/taking_care.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/stats/matches/taking_care.rb -------------------------------------------------------------------------------- /app/services/stats/mini_stats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/stats/mini_stats.rb -------------------------------------------------------------------------------- /app/services/stats/needs/abandoned.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/stats/needs/abandoned.rb -------------------------------------------------------------------------------- /app/services/stats/needs/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/stats/needs/base.rb -------------------------------------------------------------------------------- /app/services/stats/needs/done.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/stats/needs/done.rb -------------------------------------------------------------------------------- /app/services/stats/needs/done_no_help.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/stats/needs/done_no_help.rb -------------------------------------------------------------------------------- /app/services/stats/needs/not_for_me.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/stats/needs/not_for_me.rb -------------------------------------------------------------------------------- /app/services/stats/needs/positioning.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/stats/needs/positioning.rb -------------------------------------------------------------------------------- /app/services/stats/needs/quo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/stats/needs/quo.rb -------------------------------------------------------------------------------- /app/services/stats/needs/subjects_all.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/stats/needs/subjects_all.rb -------------------------------------------------------------------------------- /app/services/stats/needs/taking_care.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/stats/needs/taking_care.rb -------------------------------------------------------------------------------- /app/services/stats/needs/themes_all.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/stats/needs/themes_all.rb -------------------------------------------------------------------------------- /app/services/stats/needs/transmitted.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/stats/needs/transmitted.rb -------------------------------------------------------------------------------- /app/services/stats/two_rates_stats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/stats/two_rates_stats.rb -------------------------------------------------------------------------------- /app/services/temoignage_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/temoignage_generator.rb -------------------------------------------------------------------------------- /app/services/time_duration_service/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/time_duration_service/base.rb -------------------------------------------------------------------------------- /app/services/utilities/arrays.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/utilities/arrays.rb -------------------------------------------------------------------------------- /app/services/xlsx_export.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/xlsx_export.rb -------------------------------------------------------------------------------- /app/services/xlsx_export/base_exporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/xlsx_export/base_exporter.rb -------------------------------------------------------------------------------- /app/services/xlsx_export/match_exporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/services/xlsx_export/match_exporter.rb -------------------------------------------------------------------------------- /app/views/about/_temoignage.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/about/_temoignage.html.haml -------------------------------------------------------------------------------- /app/views/about/accessibilite.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/about/accessibilite.html.erb -------------------------------------------------------------------------------- /app/views/about/cgu.fr.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/about/cgu.fr.html.erb -------------------------------------------------------------------------------- /app/views/about/equipe.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/about/equipe.html.haml -------------------------------------------------------------------------------- /app/views/annuaire/base/_header.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/annuaire/base/_header.html.haml -------------------------------------------------------------------------------- /app/views/annuaire/base/_menu.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/annuaire/base/_menu.html.haml -------------------------------------------------------------------------------- /app/views/annuaire/search/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/annuaire/search/_form.html.haml -------------------------------------------------------------------------------- /app/views/annuaire/users/_table.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/annuaire/users/_table.html.haml -------------------------------------------------------------------------------- /app/views/annuaire/users/import.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/annuaire/users/import.html.haml -------------------------------------------------------------------------------- /app/views/annuaire/users/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/annuaire/users/index.html.haml -------------------------------------------------------------------------------- /app/views/application/_footer.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/application/_footer.html.haml -------------------------------------------------------------------------------- /app/views/application/_head.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/application/_head.html.haml -------------------------------------------------------------------------------- /app/views/application/_navbar.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/application/_navbar.html.haml -------------------------------------------------------------------------------- /app/views/application/_person.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/application/_person.haml -------------------------------------------------------------------------------- /app/views/badges/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/badges/_form.html.haml -------------------------------------------------------------------------------- /app/views/badges/_header.html.haml: -------------------------------------------------------------------------------- 1 | %h1= title 2 | -------------------------------------------------------------------------------- /app/views/badges/_menu.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/badges/_menu.html.haml -------------------------------------------------------------------------------- /app/views/badges/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/badges/edit.html.haml -------------------------------------------------------------------------------- /app/views/badges/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/badges/index.html.haml -------------------------------------------------------------------------------- /app/views/badges/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/badges/new.html.haml -------------------------------------------------------------------------------- /app/views/companies/_company.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/companies/_company.html.haml -------------------------------------------------------------------------------- /app/views/companies/_errors.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/companies/_errors.html.haml -------------------------------------------------------------------------------- /app/views/companies/_facility.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/companies/_facility.html.haml -------------------------------------------------------------------------------- /app/views/companies/_mandataire.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/companies/_mandataire.html.haml -------------------------------------------------------------------------------- /app/views/companies/_need.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/companies/_need.haml -------------------------------------------------------------------------------- /app/views/companies/_search_form.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/companies/_search_form.haml -------------------------------------------------------------------------------- /app/views/companies/needs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/companies/needs.html.haml -------------------------------------------------------------------------------- /app/views/companies/search.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/companies/search.haml -------------------------------------------------------------------------------- /app/views/companies/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/companies/show.html.haml -------------------------------------------------------------------------------- /app/views/conseiller/csv_exports/_header.html.haml: -------------------------------------------------------------------------------- 1 | %h1.fr-h2= title 2 | -------------------------------------------------------------------------------- /app/views/conseiller/diagnoses/new.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/conseiller/diagnoses/new.haml -------------------------------------------------------------------------------- /app/views/devise/invitations/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/devise/invitations/new.html.haml -------------------------------------------------------------------------------- /app/views/devise/passwords/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/devise/passwords/edit.html.haml -------------------------------------------------------------------------------- /app/views/devise/passwords/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/devise/passwords/new.html.haml -------------------------------------------------------------------------------- /app/views/devise/sessions/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/devise/sessions/new.html.haml -------------------------------------------------------------------------------- /app/views/devise/shared/_links.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/devise/shared/_links.html.haml -------------------------------------------------------------------------------- /app/views/devise/shared/_user_fields.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/devise/shared/_user_fields.haml -------------------------------------------------------------------------------- /app/views/experts/_expert.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/experts/_expert.html.haml -------------------------------------------------------------------------------- /app/views/experts/_expert_feedbacks.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/experts/_expert_feedbacks.haml -------------------------------------------------------------------------------- /app/views/experts/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/experts/edit.html.haml -------------------------------------------------------------------------------- /app/views/experts/subjects.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/experts/subjects.html.haml -------------------------------------------------------------------------------- /app/views/feedbacks/_feedback.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/feedbacks/_feedback.haml -------------------------------------------------------------------------------- /app/views/feedbacks/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/feedbacks/_form.html.haml -------------------------------------------------------------------------------- /app/views/feedbacks/create.js.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/feedbacks/create.js.haml -------------------------------------------------------------------------------- /app/views/kaminari/_first_page.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/kaminari/_first_page.html.haml -------------------------------------------------------------------------------- /app/views/kaminari/_gap.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/kaminari/_gap.html.haml -------------------------------------------------------------------------------- /app/views/kaminari/_last_page.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/kaminari/_last_page.html.haml -------------------------------------------------------------------------------- /app/views/kaminari/_next_page.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/kaminari/_next_page.html.haml -------------------------------------------------------------------------------- /app/views/kaminari/_page.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/kaminari/_page.html.haml -------------------------------------------------------------------------------- /app/views/kaminari/_paginator.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/kaminari/_paginator.html.haml -------------------------------------------------------------------------------- /app/views/kaminari/_prev_page.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/kaminari/_prev_page.html.haml -------------------------------------------------------------------------------- /app/views/landings/landings/home.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/landings/landings/home.haml -------------------------------------------------------------------------------- /app/views/landings/landings/paused.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/landings/landings/paused.haml -------------------------------------------------------------------------------- /app/views/landings/landings/show.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/landings/landings/show.haml -------------------------------------------------------------------------------- /app/views/layouts/annuaire.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/layouts/annuaire.haml -------------------------------------------------------------------------------- /app/views/layouts/application.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/layouts/application.html.haml -------------------------------------------------------------------------------- /app/views/layouts/expert_mailers.mjml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/layouts/expert_mailers.mjml -------------------------------------------------------------------------------- /app/views/layouts/expert_mailers.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> -------------------------------------------------------------------------------- /app/views/layouts/mailers.mjml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/layouts/mailers.mjml -------------------------------------------------------------------------------- /app/views/layouts/pages.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/layouts/pages.html.haml -------------------------------------------------------------------------------- /app/views/layouts/side_menu.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/layouts/side_menu.html.haml -------------------------------------------------------------------------------- /app/views/layouts/user_tabs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/layouts/user_tabs.html.haml -------------------------------------------------------------------------------- /app/views/mailers/_expert_header.mjml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/mailers/_expert_header.mjml -------------------------------------------------------------------------------- /app/views/mailers/_footer.mjml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/mailers/_footer.mjml -------------------------------------------------------------------------------- /app/views/mailers/_footer.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/mailers/_footer.text.erb -------------------------------------------------------------------------------- /app/views/mailers/_header.mjml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/mailers/_header.mjml -------------------------------------------------------------------------------- /app/views/manager/needs/_header.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/manager/needs/_header.html.haml -------------------------------------------------------------------------------- /app/views/manager/needs/_menu.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/manager/needs/_menu.html.haml -------------------------------------------------------------------------------- /app/views/manager/needs/_search.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/manager/needs/_search.haml -------------------------------------------------------------------------------- /app/views/manager/needs/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/manager/needs/index.html.haml -------------------------------------------------------------------------------- /app/views/manager/stats/_stats_search.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/manager/stats/_stats_search.haml -------------------------------------------------------------------------------- /app/views/manager/stats/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/manager/stats/index.html.haml -------------------------------------------------------------------------------- /app/views/matches/_match.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/matches/_match.haml -------------------------------------------------------------------------------- /app/views/matches/update.js.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/matches/update.js.haml -------------------------------------------------------------------------------- /app/views/needs/_additional_experts.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/needs/_additional_experts.haml -------------------------------------------------------------------------------- /app/views/needs/_admin_need.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/needs/_admin_need.html.haml -------------------------------------------------------------------------------- /app/views/needs/_header.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/needs/_header.html.haml -------------------------------------------------------------------------------- /app/views/needs/_match_actions.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/needs/_match_actions.html.haml -------------------------------------------------------------------------------- /app/views/needs/_menu.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/needs/_menu.html.haml -------------------------------------------------------------------------------- /app/views/needs/_need.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/needs/_need.html.haml -------------------------------------------------------------------------------- /app/views/needs/_received_needs.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/needs/_received_needs.haml -------------------------------------------------------------------------------- /app/views/needs/_search.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/needs/_search.haml -------------------------------------------------------------------------------- /app/views/needs/_star_btn.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/needs/_star_btn.html.haml -------------------------------------------------------------------------------- /app/views/needs/add_match.js.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/needs/add_match.js.haml -------------------------------------------------------------------------------- /app/views/needs/additional_experts.js.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/needs/additional_experts.js.haml -------------------------------------------------------------------------------- /app/views/needs/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/needs/index.html.haml -------------------------------------------------------------------------------- /app/views/needs/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/needs/show.html.haml -------------------------------------------------------------------------------- /app/views/needs/star.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/needs/star.html.haml -------------------------------------------------------------------------------- /app/views/pages/_breadcrumbs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/pages/_breadcrumbs.html.haml -------------------------------------------------------------------------------- /app/views/pages/_cta_button.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/pages/_cta_button.haml -------------------------------------------------------------------------------- /app/views/pages/_faq.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/pages/_faq.html.haml -------------------------------------------------------------------------------- /app/views/pages/_flashes.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/pages/_flashes.haml -------------------------------------------------------------------------------- /app/views/pages/_footer.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/pages/_footer.haml -------------------------------------------------------------------------------- /app/views/pages/_navbar.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/pages/_navbar.haml -------------------------------------------------------------------------------- /app/views/pages/_tarteaucitron.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/pages/_tarteaucitron.html.erb -------------------------------------------------------------------------------- /app/views/reminders/_header.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/reminders/_header.html.haml -------------------------------------------------------------------------------- /app/views/reminders/_needs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/reminders/_needs.html.haml -------------------------------------------------------------------------------- /app/views/reminders/experts/index.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/reminders/experts/index.haml -------------------------------------------------------------------------------- /app/views/reminders/experts/quo.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/reminders/experts/quo.haml -------------------------------------------------------------------------------- /app/views/reminders/experts/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/reminders/experts/show.html.haml -------------------------------------------------------------------------------- /app/views/reminders/needs/_menu.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/reminders/needs/_menu.html.haml -------------------------------------------------------------------------------- /app/views/reminders/needs/expert.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/reminders/needs/expert.html.haml -------------------------------------------------------------------------------- /app/views/reminders/needs/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/reminders/needs/index.html.haml -------------------------------------------------------------------------------- /app/views/reports/_header.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/reports/_header.html.haml -------------------------------------------------------------------------------- /app/views/reports/_menu.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/reports/_menu.html.haml -------------------------------------------------------------------------------- /app/views/reports/_search.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/reports/_search.haml -------------------------------------------------------------------------------- /app/views/reports/matches.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/reports/matches.html.haml -------------------------------------------------------------------------------- /app/views/reports/stats.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/reports/stats.html.haml -------------------------------------------------------------------------------- /app/views/shared/_breadcrumb.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/shared/_breadcrumb.html.haml -------------------------------------------------------------------------------- /app/views/shared/_dsfr_api.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/shared/_dsfr_api.html.erb -------------------------------------------------------------------------------- /app/views/shared/_favicon.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/shared/_favicon.html.erb -------------------------------------------------------------------------------- /app/views/shared/_flashes.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/shared/_flashes.html.haml -------------------------------------------------------------------------------- /app/views/shared/_iframe_resizer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/shared/_iframe_resizer.html.erb -------------------------------------------------------------------------------- /app/views/shared/_matomo.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/shared/_matomo.html.erb -------------------------------------------------------------------------------- /app/views/shared/_password_tips.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/shared/_password_tips.html.haml -------------------------------------------------------------------------------- /app/views/shared/_skiplinks.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/shared/_skiplinks.html.haml -------------------------------------------------------------------------------- /app/views/shared/_tarteaucitron.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/shared/_tarteaucitron.html.erb -------------------------------------------------------------------------------- /app/views/shared/_transcription.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/shared/_transcription.html.haml -------------------------------------------------------------------------------- /app/views/shared/errors/404.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/shared/errors/404.html.haml -------------------------------------------------------------------------------- /app/views/shared/errors/500.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/shared/errors/500.html.haml -------------------------------------------------------------------------------- /app/views/shared/errors/500.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/shared/errors/500.xml.builder -------------------------------------------------------------------------------- /app/views/sitemap/sitemap.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/sitemap/sitemap.html.haml -------------------------------------------------------------------------------- /app/views/sitemap/sitemap.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/sitemap/sitemap.xml.builder -------------------------------------------------------------------------------- /app/views/solicitations/_header.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/solicitations/_header.html.haml -------------------------------------------------------------------------------- /app/views/solicitations/_steps.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/solicitations/_steps.html.haml -------------------------------------------------------------------------------- /app/views/stats/_load_stats.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/stats/_load_stats.html.haml -------------------------------------------------------------------------------- /app/views/stats/_main_stats_chart.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/stats/_main_stats_chart.haml -------------------------------------------------------------------------------- /app/views/stats/_ministats.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/stats/_ministats.haml -------------------------------------------------------------------------------- /app/views/stats/_skeleton_card.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/stats/_skeleton_card.html.haml -------------------------------------------------------------------------------- /app/views/stats/public/_stats_params.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/stats/public/_stats_params.haml -------------------------------------------------------------------------------- /app/views/stats/public/index.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/stats/public/index.haml -------------------------------------------------------------------------------- /app/views/stats/team/_stats_params.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/stats/team/_stats_params.haml -------------------------------------------------------------------------------- /app/views/stats/team/_tabs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/stats/team/_tabs.html.haml -------------------------------------------------------------------------------- /app/views/stats/team/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/stats/team/index.html.haml -------------------------------------------------------------------------------- /app/views/user_pages/tutoriels.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/user_pages/tutoriels.haml -------------------------------------------------------------------------------- /app/views/users/_header.html.haml: -------------------------------------------------------------------------------- 1 | %h1 2 | = t('.title') 3 | %p.fr-h2= user.full_name 4 | -------------------------------------------------------------------------------- /app/views/users/_menu.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/app/views/users/_menu.html.haml -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/babel.config.js -------------------------------------------------------------------------------- /bin/brakeman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/bin/brakeman -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/bin/dev -------------------------------------------------------------------------------- /bin/parallel_rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/bin/parallel_rspec -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/bin/rspec -------------------------------------------------------------------------------- /bin/rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/bin/rubocop -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/squasher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/bin/squasher -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/bin/update -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/brakeman.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/brakeman.ignore -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/data/demo_planning.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/data/demo_planning.yml -------------------------------------------------------------------------------- /config/data/idcc_to_opco.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/data/idcc_to_opco.yml -------------------------------------------------------------------------------- /config/data/subject_answers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/data/subject_answers.yml -------------------------------------------------------------------------------- /config/database.example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/database.example.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/i18n-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/i18n-tasks.yml -------------------------------------------------------------------------------- /config/initializers/active_admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/initializers/active_admin.rb -------------------------------------------------------------------------------- /config/initializers/active_model_serializers.rb: -------------------------------------------------------------------------------- 1 | ActiveModelSerializers.config.adapter = :pde 2 | -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/caxslx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/initializers/caxslx.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/core_extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/initializers/core_extensions.rb -------------------------------------------------------------------------------- /config/initializers/custom_extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/initializers/custom_extensions.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/geocoder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/initializers/geocoder.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/kaminari_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/initializers/kaminari_config.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/mjml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/initializers/mjml.rb -------------------------------------------------------------------------------- /config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /config/initializers/rack_attack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/initializers/rack_attack.rb -------------------------------------------------------------------------------- /config/initializers/rswag-ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/initializers/rswag-ui.rb -------------------------------------------------------------------------------- /config/initializers/rswag_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/initializers/rswag_api.rb -------------------------------------------------------------------------------- /config/initializers/sendinblue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/initializers/sendinblue.rb -------------------------------------------------------------------------------- /config/initializers/sentry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/initializers/sentry.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/sidekiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/initializers/sidekiq.rb -------------------------------------------------------------------------------- /config/initializers/user_impersonate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/initializers/user_impersonate.rb -------------------------------------------------------------------------------- /config/initializers/web_app_manifest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/initializers/web_app_manifest.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/data/api_name.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/locales/data/api_name.fr.yml -------------------------------------------------------------------------------- /config/locales/data/codes_effectif.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/locales/data/codes_effectif.fr.yml -------------------------------------------------------------------------------- /config/locales/data/codes_regions.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/locales/data/codes_regions.fr.yml -------------------------------------------------------------------------------- /config/locales/data/equipe.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/locales/data/equipe.fr.yml -------------------------------------------------------------------------------- /config/locales/data/faq.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/locales/data/faq.fr.yml -------------------------------------------------------------------------------- /config/locales/data/libelles_naf.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/locales/data/libelles_naf.fr.yml -------------------------------------------------------------------------------- /config/locales/data/libelles_nafa.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/locales/data/libelles_nafa.fr.yml -------------------------------------------------------------------------------- /config/locales/data/temoignages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/locales/data/temoignages.yml -------------------------------------------------------------------------------- /config/locales/devise.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/locales/devise.fr.yml -------------------------------------------------------------------------------- /config/locales/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/locales/fr.yml -------------------------------------------------------------------------------- /config/locales/mailers.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/locales/mailers.fr.yml -------------------------------------------------------------------------------- /config/locales/models.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/locales/models.fr.yml -------------------------------------------------------------------------------- /config/locales/views.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/locales/views.fr.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/rorvswild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/rorvswild.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/sidekiq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/sidekiq.yml -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/spring.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/storage.yml -------------------------------------------------------------------------------- /config/webpack/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/webpack/base.js -------------------------------------------------------------------------------- /config/webpack/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/webpack/config.js -------------------------------------------------------------------------------- /config/webpack/development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/webpack/development.js -------------------------------------------------------------------------------- /config/webpack/production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/webpack/production.js -------------------------------------------------------------------------------- /config/webpack/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/webpack/test.js -------------------------------------------------------------------------------- /config/webpack/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/config/webpack/webpack.config.js -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /doc/01-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/doc/01-setup.md -------------------------------------------------------------------------------- /doc/02-development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/doc/02-development.md -------------------------------------------------------------------------------- /doc/03-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/doc/03-deployment.md -------------------------------------------------------------------------------- /doc/04-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/doc/04-architecture.md -------------------------------------------------------------------------------- /doc/05-gotchas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/doc/05-gotchas.md -------------------------------------------------------------------------------- /doc/06-maintenance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/doc/06-maintenance.md -------------------------------------------------------------------------------- /doc/Diagram SubjectAnswers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/doc/Diagram SubjectAnswers.jpg -------------------------------------------------------------------------------- /doc/browserstack-logo-600x315.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/doc/browserstack-logo-600x315.png -------------------------------------------------------------------------------- /doc/domain_model.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/doc/domain_model.pdf -------------------------------------------------------------------------------- /doc/logo-PDE-lineaire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/doc/logo-PDE-lineaire.svg -------------------------------------------------------------------------------- /doc/logo-PDE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/doc/logo-PDE.svg -------------------------------------------------------------------------------- /doc/picto-PDE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/doc/picto-PDE.svg -------------------------------------------------------------------------------- /lib/api_adapters/pde_adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/lib/api_adapters/pde_adapter.rb -------------------------------------------------------------------------------- /lib/rswag/ui/CSP.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/lib/rswag/ui/CSP.rb -------------------------------------------------------------------------------- /lib/tasks/anonymize.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/lib/tasks/anonymize.rake -------------------------------------------------------------------------------- /lib/tasks/anonymize_old_diagnoses.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/lib/tasks/anonymize_old_diagnoses.rake -------------------------------------------------------------------------------- /lib/tasks/auto_annotate_models.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/lib/tasks/auto_annotate_models.rake -------------------------------------------------------------------------------- /lib/tasks/auto_generate_diagram.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/lib/tasks/auto_generate_diagram.rake -------------------------------------------------------------------------------- /lib/tasks/import_dump.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/lib/tasks/import_dump.rake -------------------------------------------------------------------------------- /lib/tasks/import_prod_to_staging.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/lib/tasks/import_prod_to_staging.rake -------------------------------------------------------------------------------- /lib/tasks/lint.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/lib/tasks/lint.rake -------------------------------------------------------------------------------- /lib/tasks/lint_fix.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/lib/tasks/lint_fix.rake -------------------------------------------------------------------------------- /lib/tasks/long_migration.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/lib/tasks/long_migration.rake -------------------------------------------------------------------------------- /lib/tasks/migration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/push_to_production.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/lib/tasks/push_to_production.rake -------------------------------------------------------------------------------- /lib/tasks/rattrapage_api_rne.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/lib/tasks/rattrapage_api_rne.rake -------------------------------------------------------------------------------- /lib/tasks/staging_transform_data.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/lib/tasks/staging_transform_data.rake -------------------------------------------------------------------------------- /lib/tasks/transfer_bizdev.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/lib/tasks/transfer_bizdev.rake -------------------------------------------------------------------------------- /lib/tasks/update_effectif_company.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/lib/tasks/update_effectif_company.rake -------------------------------------------------------------------------------- /lib/tasks/update_effectif_facility.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/lib/tasks/update_effectif_facility.rake -------------------------------------------------------------------------------- /lib/tasks/update_users_emails.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/lib/tasks/update_users_emails.rake -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/package.json -------------------------------------------------------------------------------- /public/.well-known/security.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/public/.well-known/security.txt -------------------------------------------------------------------------------- /public/503.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/public/503.html -------------------------------------------------------------------------------- /public/504.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/public/504.html -------------------------------------------------------------------------------- /public/google7c9d162767dd90a2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/public/google7c9d162767dd90a2.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/public/robots.txt -------------------------------------------------------------------------------- /scalingo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/scalingo.json -------------------------------------------------------------------------------- /spec/a11y/application/devise_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/a11y/application/devise_spec.rb -------------------------------------------------------------------------------- /spec/a11y/application/needs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/a11y/application/needs_spec.rb -------------------------------------------------------------------------------- /spec/a11y/application/pages_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/a11y/application/pages_spec.rb -------------------------------------------------------------------------------- /spec/a11y/pages/about_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/a11y/pages/about_spec.rb -------------------------------------------------------------------------------- /spec/a11y/pages/landings_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/a11y/pages/landings_spec.rb -------------------------------------------------------------------------------- /spec/a11y/pages/solicitation_form_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/a11y/pages/solicitation_form_spec.rb -------------------------------------------------------------------------------- /spec/a11y/pages/stats_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/a11y/pages/stats_spec.rb -------------------------------------------------------------------------------- /spec/api_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/api_helper.rb -------------------------------------------------------------------------------- /spec/controllers/badges_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/controllers/badges_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/needs_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/controllers/needs_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/shared_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/controllers/shared_controller_spec.rb -------------------------------------------------------------------------------- /spec/factories/activity_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/activity_report.rb -------------------------------------------------------------------------------- /spec/factories/antennes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/antennes.rb -------------------------------------------------------------------------------- /spec/factories/api_keys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/api_keys.rb -------------------------------------------------------------------------------- /spec/factories/badges.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/badges.rb -------------------------------------------------------------------------------- /spec/factories/categories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/categories.rb -------------------------------------------------------------------------------- /spec/factories/communes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/communes.rb -------------------------------------------------------------------------------- /spec/factories/companies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/companies.rb -------------------------------------------------------------------------------- /spec/factories/company_satisfactions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/company_satisfactions.rb -------------------------------------------------------------------------------- /spec/factories/contacts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/contacts.rb -------------------------------------------------------------------------------- /spec/factories/cooperation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/cooperation.rb -------------------------------------------------------------------------------- /spec/factories/cooperation_themes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/cooperation_themes.rb -------------------------------------------------------------------------------- /spec/factories/diagnoses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/diagnoses.rb -------------------------------------------------------------------------------- /spec/factories/email_retention.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/email_retention.rb -------------------------------------------------------------------------------- /spec/factories/experts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/experts.rb -------------------------------------------------------------------------------- /spec/factories/experts_subjects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/experts_subjects.rb -------------------------------------------------------------------------------- /spec/factories/facilities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/facilities.rb -------------------------------------------------------------------------------- /spec/factories/feedbacks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/feedbacks.rb -------------------------------------------------------------------------------- /spec/factories/institutions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/institutions.rb -------------------------------------------------------------------------------- /spec/factories/institutions_subjects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/institutions_subjects.rb -------------------------------------------------------------------------------- /spec/factories/landing_subjects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/landing_subjects.rb -------------------------------------------------------------------------------- /spec/factories/landing_themes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/landing_themes.rb -------------------------------------------------------------------------------- /spec/factories/landings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/landings.rb -------------------------------------------------------------------------------- /spec/factories/match_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/match_filter.rb -------------------------------------------------------------------------------- /spec/factories/matches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/matches.rb -------------------------------------------------------------------------------- /spec/factories/needs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/needs.rb -------------------------------------------------------------------------------- /spec/factories/profil_pictures.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/profil_pictures.rb -------------------------------------------------------------------------------- /spec/factories/reminders_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/reminders_action.rb -------------------------------------------------------------------------------- /spec/factories/reminders_registers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/reminders_registers.rb -------------------------------------------------------------------------------- /spec/factories/shared_satisfactions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/shared_satisfactions.rb -------------------------------------------------------------------------------- /spec/factories/solicitations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/solicitations.rb -------------------------------------------------------------------------------- /spec/factories/spams.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/spams.rb -------------------------------------------------------------------------------- /spec/factories/subject_answer_groupings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/subject_answer_groupings.rb -------------------------------------------------------------------------------- /spec/factories/subject_answers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/subject_answers.rb -------------------------------------------------------------------------------- /spec/factories/subject_questions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/subject_questions.rb -------------------------------------------------------------------------------- /spec/factories/subjects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/subjects.rb -------------------------------------------------------------------------------- /spec/factories/territorial_zones.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/territorial_zones.rb -------------------------------------------------------------------------------- /spec/factories/territories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/territories.rb -------------------------------------------------------------------------------- /spec/factories/themes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/themes.rb -------------------------------------------------------------------------------- /spec/factories/user_rights.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/user_rights.rb -------------------------------------------------------------------------------- /spec/factories/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/factories/users.rb -------------------------------------------------------------------------------- /spec/features/annuaire/users_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/features/annuaire/users_spec.rb -------------------------------------------------------------------------------- /spec/features/landings_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/features/landings_spec.rb -------------------------------------------------------------------------------- /spec/features/manager/stats_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/features/manager/stats_spec.rb -------------------------------------------------------------------------------- /spec/features/signin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/features/signin_spec.rb -------------------------------------------------------------------------------- /spec/features/users/needs_feature_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/features/users/needs_feature_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/files/api_entreprise_rm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/fixtures/files/api_entreprise_rm.json -------------------------------------------------------------------------------- /spec/fixtures/files/api_insee_siret.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/fixtures/files/api_insee_siret.json -------------------------------------------------------------------------------- /spec/fixtures/files/api_rne_companies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/fixtures/files/api_rne_companies.json -------------------------------------------------------------------------------- /spec/fixtures/files/api_rne_token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/fixtures/files/api_rne_token.json -------------------------------------------------------------------------------- /spec/fixtures/files/api_rne_token_401.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/fixtures/files/api_rne_token_401.json -------------------------------------------------------------------------------- /spec/helpers/breadcrumbs_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/helpers/breadcrumbs_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/companies_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/helpers/companies_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/diagnosis_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/helpers/diagnosis_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/experts_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/helpers/experts_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/images_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/helpers/images_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/nested_errors_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/helpers/nested_errors_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/solicitation_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/helpers/solicitation_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/stats_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/helpers/stats_helper_spec.rb -------------------------------------------------------------------------------- /spec/jobs/abandon_needs_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/jobs/abandon_needs_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/api/api_keys_revoke_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/jobs/api/api_keys_revoke_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/match_feedback_email_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/jobs/match_feedback_email_job_spec.rb -------------------------------------------------------------------------------- /spec/mailers/company_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/mailers/company_mailer_spec.rb -------------------------------------------------------------------------------- /spec/mailers/expert_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/mailers/expert_mailer_spec.rb -------------------------------------------------------------------------------- /spec/mailers/solicitation_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/mailers/solicitation_mailer_spec.rb -------------------------------------------------------------------------------- /spec/mailers/user_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/mailers/user_mailer_spec.rb -------------------------------------------------------------------------------- /spec/models/antenne_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/models/antenne_spec.rb -------------------------------------------------------------------------------- /spec/models/api_key_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/models/api_key_spec.rb -------------------------------------------------------------------------------- /spec/models/badge_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/models/badge_spec.rb -------------------------------------------------------------------------------- /spec/models/company_satisfaction_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/models/company_satisfaction_spec.rb -------------------------------------------------------------------------------- /spec/models/company_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/models/company_spec.rb -------------------------------------------------------------------------------- /spec/models/concerns/archivable_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/models/concerns/archivable_spec.rb -------------------------------------------------------------------------------- /spec/models/concerns/naf_code_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/models/concerns/naf_code_spec.rb -------------------------------------------------------------------------------- /spec/models/contact_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/models/contact_spec.rb -------------------------------------------------------------------------------- /spec/models/cooperation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/models/cooperation_spec.rb -------------------------------------------------------------------------------- /spec/models/diagnosis_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/models/diagnosis_spec.rb -------------------------------------------------------------------------------- /spec/models/expert_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/models/expert_spec.rb -------------------------------------------------------------------------------- /spec/models/expert_subject_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/models/expert_subject_spec.rb -------------------------------------------------------------------------------- /spec/models/facility_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/models/facility_spec.rb -------------------------------------------------------------------------------- /spec/models/feedback_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/models/feedback_spec.rb -------------------------------------------------------------------------------- /spec/models/institution_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/models/institution_spec.rb -------------------------------------------------------------------------------- /spec/models/institution_subject_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/models/institution_subject_spec.rb -------------------------------------------------------------------------------- /spec/models/landing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/models/landing_spec.rb -------------------------------------------------------------------------------- /spec/models/landing_subject_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/models/landing_subject_spec.rb -------------------------------------------------------------------------------- /spec/models/match_filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/models/match_filter_spec.rb -------------------------------------------------------------------------------- /spec/models/match_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/models/match_spec.rb -------------------------------------------------------------------------------- /spec/models/need_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/models/need_spec.rb -------------------------------------------------------------------------------- /spec/models/profil_picture_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/models/profil_picture_spec.rb -------------------------------------------------------------------------------- /spec/models/shared_satisfaction_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/models/shared_satisfaction_spec.rb -------------------------------------------------------------------------------- /spec/models/solicitation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/models/solicitation_spec.rb -------------------------------------------------------------------------------- /spec/models/spam_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/models/spam_spec.rb -------------------------------------------------------------------------------- /spec/models/subject_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/models/subject_spec.rb -------------------------------------------------------------------------------- /spec/models/territorial_zone_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/models/territorial_zone_spec.rb -------------------------------------------------------------------------------- /spec/models/theme_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/models/theme_spec.rb -------------------------------------------------------------------------------- /spec/models/user_right_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/models/user_right_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/policies/antenne_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/policies/antenne_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/contact_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/policies/contact_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/cooperation_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/policies/cooperation_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/diagnosis_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/policies/diagnosis_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/expert_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/policies/expert_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/facility_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/policies/facility_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/feedback_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/policies/feedback_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/manager/needs_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/policies/manager/needs_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/manager/stats_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/policies/manager/stats_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/match_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/policies/match_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/need_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/policies/need_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/report_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/policies/report_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/solicitation_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/policies/solicitation_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/stats/all_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/policies/stats/all_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/user_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/policies/user_policy_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/landings_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/requests/api/v1/landings_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/solicitations_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/requests/api/v1/solicitations_spec.rb -------------------------------------------------------------------------------- /spec/requests/landings_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/requests/landings_spec.rb -------------------------------------------------------------------------------- /spec/requests/solicitations_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/requests/solicitations_spec.rb -------------------------------------------------------------------------------- /spec/services/antenne_hierarchy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/services/antenne_hierarchy_spec.rb -------------------------------------------------------------------------------- /spec/services/api/insee/siret_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/services/api/insee/siret_spec.rb -------------------------------------------------------------------------------- /spec/services/api/rne/companies_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/services/api/rne/companies_spec.rb -------------------------------------------------------------------------------- /spec/services/api/rne/token_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/services/api/rne/token_spec.rb -------------------------------------------------------------------------------- /spec/services/effectif/format_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/services/effectif/format_spec.rb -------------------------------------------------------------------------------- /spec/services/format_siret_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/services/format_siret_spec.rb -------------------------------------------------------------------------------- /spec/services/match_mailer_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/services/match_mailer_service_spec.rb -------------------------------------------------------------------------------- /spec/services/needs_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/services/needs_service_spec.rb -------------------------------------------------------------------------------- /spec/services/reminders_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/services/reminders_service_spec.rb -------------------------------------------------------------------------------- /spec/services/search_facility/all_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/services/search_facility/all_spec.rb -------------------------------------------------------------------------------- /spec/services/stats/filters/needs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/services/stats/filters/needs_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/api_spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/support/api_spec_helper.rb -------------------------------------------------------------------------------- /spec/support/axe/matchers/be_accessible.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/support/axe/matchers/be_accessible.rb -------------------------------------------------------------------------------- /spec/support/controller_macros.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/support/controller_macros.rb -------------------------------------------------------------------------------- /spec/support/feature_macros.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/support/feature_macros.rb -------------------------------------------------------------------------------- /spec/support/pundit_spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/support/pundit_spec_helper.rb -------------------------------------------------------------------------------- /spec/support/reminders_spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/support/reminders_spec_helper.rb -------------------------------------------------------------------------------- /spec/support/split_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/support/split_helper.rb -------------------------------------------------------------------------------- /spec/support/tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/support/tasks.rb -------------------------------------------------------------------------------- /spec/swagger_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/swagger_helper.rb -------------------------------------------------------------------------------- /spec/system/annuaire_system_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/system/annuaire_system_spec.rb -------------------------------------------------------------------------------- /spec/system/diagnosis_system_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/system/diagnosis_system_spec.rb -------------------------------------------------------------------------------- /spec/system/manager/needs_system_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/system/manager/needs_system_spec.rb -------------------------------------------------------------------------------- /spec/system/needs_system_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/system/needs_system_spec.rb -------------------------------------------------------------------------------- /spec/system/pages_system_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/system/pages_system_spec.rb -------------------------------------------------------------------------------- /spec/system_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/system_helper.rb -------------------------------------------------------------------------------- /spec/tasks/anonymize_old_companies_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/tasks/anonymize_old_companies_spec.rb -------------------------------------------------------------------------------- /spec/views/iframe_test_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/views/iframe_test_page.html -------------------------------------------------------------------------------- /spec/views/needs/show.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/spec/views/needs/show.html.haml_spec.rb -------------------------------------------------------------------------------- /swagger/v1/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/swagger/v1/swagger.yaml -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/conseillers-entreprises/HEAD/yarn.lock --------------------------------------------------------------------------------