├── .bowerrc ├── .dockerignore ├── .env ├── .env.example ├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ ├── deploy.yml │ ├── notification.yml │ └── test.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .ruby-version ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENCE.txt ├── Procfile ├── README.md ├── Rakefile ├── app ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ ├── .keep │ │ ├── bg_not_working_day.png │ │ ├── bg_not_working_day_retina.png │ │ ├── icon_add_person.png │ │ ├── icon_add_person_retina.png │ │ ├── icon_add_subteam.png │ │ ├── icon_add_subteam_retina.png │ │ ├── icon_arrow.png │ │ ├── icon_arrow_left.png │ │ ├── icon_arrow_retina.png │ │ ├── icon_delete.png │ │ ├── icon_delete_retina.png │ │ ├── icon_edit_team.png │ │ ├── icon_edit_team_retina.png │ │ ├── icon_group.png │ │ ├── icon_group_retina.png │ │ ├── icon_info.png │ │ ├── icon_info_retina.png │ │ ├── icon_plus.png │ │ ├── icon_plus_retina.png │ │ ├── icon_search.png │ │ ├── icon_search_retina.png │ │ ├── icon_team.png │ │ ├── icon_team_retina.png │ │ ├── jcrop.gif │ │ ├── loading_100x100.gif │ │ ├── loading_200x200.gif │ │ ├── medium_no_photo.png │ │ ├── medium_no_photo_old.png │ │ ├── medium_team.png │ │ ├── medium_team_old.png │ │ ├── moj_logo_email.png │ │ ├── moj_logo_horizontal_36x64.gif │ │ ├── peoplefinder │ │ │ ├── .keep │ │ │ └── breadcrumb.gif │ │ └── search-button.png │ ├── javascripts │ │ ├── application.js │ │ ├── modules │ │ │ ├── analytics_event.js │ │ │ ├── moj.Helpers.js │ │ │ ├── moj.Module.loadtime.js │ │ │ ├── moj.Module.search.js │ │ │ ├── moj.format_helper.js │ │ │ ├── moj.sample.js │ │ │ ├── moj.wordcount.js │ │ │ ├── team_selector.js │ │ │ └── virtual_pageview.js │ │ └── peoplefinder │ │ │ ├── photo_upload.js.erb │ │ │ └── suggestions.js │ └── stylesheets │ │ ├── application-ie6.scss │ │ ├── application-ie7.scss │ │ ├── application-ie8.scss │ │ ├── application.scss │ │ ├── elements-local │ │ ├── _anchors.scss │ │ ├── _button.scss │ │ ├── _checkboxes.scss │ │ ├── _details.scss │ │ ├── _footer.scss │ │ ├── _proposition-menu.scss │ │ ├── _search-highlight.scss │ │ ├── _textarea.scss │ │ └── _typography.scss │ │ ├── elements │ │ ├── _button.scss │ │ └── _typography.scss │ │ ├── email.scss │ │ ├── modules │ │ ├── _module-complete-indicator.scss │ │ ├── _module-feedback-form.scss │ │ ├── _module-flash-messages.scss │ │ ├── _module-headers.scss │ │ ├── _module-home.scss │ │ ├── _module-list.scss │ │ ├── _module-media.scss │ │ ├── _module-pagination.scss │ │ ├── _module-proposition-links.scss │ │ ├── _module-search.scss │ │ ├── _module-subgroups.scss │ │ ├── _module-suggestions.scss │ │ ├── _module-team-overview.scss │ │ ├── _module-team-selector.scss │ │ ├── _module-team-subgroup.scss │ │ ├── _module-textarea-help.scss │ │ ├── _module-wrap-long-text.scss │ │ └── _xmodule_person_photos.scss │ │ └── print.scss ├── controllers │ ├── admin │ │ ├── management_controller.rb │ │ └── person_uploads_controller.rb │ ├── api │ │ ├── application_controller.rb │ │ └── people_controller.rb │ ├── application_controller.rb │ ├── concerns │ │ ├── session_person_creator.rb │ │ └── user_agent_helper.rb │ ├── errors_controller.rb │ ├── groups_controller.rb │ ├── health_check_controller.rb │ ├── home_controller.rb │ ├── pages_controller.rb │ ├── people_controller.rb │ ├── person_email_controller.rb │ ├── person_image_controller.rb │ ├── ping_controller.rb │ ├── problem_reports_controller.rb │ ├── profile_photos_controller.rb │ ├── search_controller.rb │ ├── sessions_controller.rb │ ├── suggestions_controller.rb │ ├── tokens_controller.rb │ └── versions_controller.rb ├── form_builders │ ├── person_form_builder.rb │ └── suggestion_form_builder.rb ├── helpers │ ├── analytics_helper.rb │ ├── application_helper.rb │ ├── breadcrumb_helper.rb │ ├── feature_helper.rb │ ├── mail_helper.rb │ ├── open_search_helper.rb │ ├── org_browser_helper.rb │ ├── people_helper.rb │ ├── person_email_helper.rb │ ├── search_helper.rb │ ├── state_cookie_helper.rb │ ├── upload_helper.rb │ └── versions_helper.rb ├── jobs │ ├── application_job.rb │ ├── generate_report_job.rb │ ├── notification_sender.rb │ ├── person_import_job.rb │ └── update_group_members_completion_score_job.rb ├── mailers │ ├── .keep │ ├── application_mailer.rb │ ├── group_update_mailer.rb │ ├── problem_report_mailer.rb │ ├── reminder_mailer.rb │ ├── suggestion_mailer.rb │ ├── token_mailer.rb │ └── user_update_mailer.rb ├── models │ ├── .keep │ ├── application_record.rb │ ├── concerns │ │ ├── .keep │ │ ├── bucketed_completion.rb │ │ ├── completion.rb │ │ ├── concatenated_fields.rb │ │ ├── data_migration_utils.rb │ │ ├── expose_mandatory_fields.rb │ │ ├── hierarchical.rb │ │ ├── person_changes_tracker.rb │ │ ├── placeholder.rb │ │ ├── sanitizable.rb │ │ ├── searchable.rb │ │ └── work_days.rb │ ├── email_address.rb │ ├── external_user.rb │ ├── group.rb │ ├── health_check.rb │ ├── health_check │ │ ├── component.rb │ │ ├── database.rb │ │ ├── database_configuration.rb │ │ └── open_search.rb │ ├── home.rb │ ├── ip_address_matcher.rb │ ├── membership.rb │ ├── permitted_domain.rb │ ├── person.rb │ ├── person_upload.rb │ ├── problem_report.rb │ ├── profile_photo.rb │ ├── queued_notification.rb │ ├── readonly_user.rb │ ├── report.rb │ ├── suggestion.rb │ ├── token.rb │ └── version.rb ├── policies │ ├── admin │ │ ├── management_policy.rb │ │ └── person_upload_policy.rb │ ├── application_policy.rb │ ├── group_policy.rb │ ├── person_policy.rb │ └── version_policy.rb ├── presenters │ ├── audit_version_presenter.rb │ ├── changes_presenter.rb │ ├── membership_change_set.rb │ ├── membership_changes_presenter.rb │ ├── person_changes_presenter.rb │ └── profile_changes_presenter.rb ├── queries │ ├── base_query.rb │ ├── distinct_membership_query.rb │ ├── namesakes_query.rb │ ├── people_in_groups_query.rb │ └── user_behavior_query.rb ├── services │ ├── deployment.rb │ ├── email_extractor.rb │ ├── group_lister.rb │ ├── group_search.rb │ ├── group_update_service.rb │ ├── login.rb │ ├── never_logged_in_notifier.rb │ ├── person_creator.rb │ ├── person_csv_importer.rb │ ├── person_csv_parser.rb │ ├── person_destroyer.rb │ ├── person_search.rb │ ├── person_update_notifier.rb │ ├── person_updater.rb │ ├── profile_change_aggregator.rb │ ├── random_generator.rb │ ├── search_results.rb │ ├── state_manager_cookie.rb │ ├── suggestion_delivery.rb │ ├── team_description_notifier.rb │ ├── token_login.rb │ └── token_sender.rb ├── uploaders │ └── image_uploader.rb ├── validators │ ├── email_validator.rb │ ├── file_size_validator.rb │ ├── image_dimensions_validator.rb │ └── permanent_secretary_unique_validator.rb └── views │ ├── admin │ ├── management │ │ └── show.html.haml │ └── person_uploads │ │ ├── _errors.html.haml │ │ ├── _form.html.haml │ │ ├── _hint.html.haml │ │ └── new.html.haml │ ├── errors │ ├── internal_error.html.erb │ └── not_found.html.erb │ ├── groups │ ├── _all_people_pagination.html.haml │ ├── _breadcrumbs.html.haml │ ├── _detail.html.haml │ ├── _form.html.haml │ ├── _heading_links.html.haml │ ├── _leaderships.html.haml │ ├── _people_in_team.html.haml │ ├── _subgroup.html.haml │ ├── _teams_in_team.html.haml │ ├── all_people.html.haml │ ├── edit.html.haml │ ├── new.html.haml │ ├── organogram.html.haml │ ├── people_outside_subteams.html.haml │ └── show.html.haml │ ├── home │ └── show.html.haml │ ├── information_requests │ └── new.html.haml │ ├── layouts │ ├── _footer.html.erb │ ├── application.html.haml │ └── govuk_template.html.erb │ ├── memberships │ └── _summary.html.haml │ ├── pages │ └── show.html.haml │ ├── people │ ├── _action_links.haml │ ├── _breadcrumbs.html.haml │ ├── _completeness.html.haml │ ├── _day.html.haml │ ├── _form.html.haml │ ├── _membership_fields.html.haml │ ├── _profile.html.haml │ ├── _request_information.html.haml │ ├── _summary.html.haml │ ├── _team_selector.html.haml │ ├── _working_days.html.haml │ ├── add_membership.html.haml │ ├── confirm.html.haml │ ├── edit.html.haml │ ├── new.html.haml │ ├── remove_membership.html.haml │ └── show.html.haml │ ├── person_email │ └── edit.html.haml │ ├── person_image │ ├── _breadcrumbs.html.haml │ └── edit.html.haml │ ├── reported_profiles │ └── new.html.haml │ ├── search │ ├── _filter_sidebar.html.haml │ ├── _person.html.haml │ ├── _person_confirmation.html.haml │ ├── _team.html.haml │ └── index.html.haml │ ├── sessions │ ├── _login_page.html.haml │ ├── failed.html.haml │ ├── new.html.haml │ ├── person_confirm.html.haml │ └── unsupported_browser.html.haml │ ├── shared │ ├── _audit.html.haml │ ├── _breadcrumb.html.haml │ ├── _breadcrumbs.html.haml │ ├── _edit_links_NOT_USED.html.haml │ ├── _feedback_form.html.haml │ ├── _loginout.html.haml │ ├── _org_browser.html.haml │ ├── _org_browser_level.html.haml │ ├── _org_browser_level_heading.html.haml │ ├── _org_browser_level_subgroups.html.haml │ └── _search.html.haml │ ├── suggestions │ ├── create.html.haml │ └── new.html.haml │ ├── tokens │ ├── create.html.haml │ ├── failed.html.haml │ ├── new.html.haml │ └── unsupported_browser.html.haml │ └── versions │ ├── _general.html.haml │ ├── _membership.html.haml │ ├── _pagination.html.haml │ └── index.html.haml ├── bin ├── bundle ├── delayed_job ├── rails ├── rake ├── setup └── update ├── bower.json ├── config.ru ├── config ├── application.rb ├── boot.rb ├── brakeman.ignore ├── cable.yml ├── database.yml ├── docker │ ├── entrypoint-jobs.sh │ └── entrypoint-webapp.sh ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── action_view_patch.rb │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── carrierwave.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── delayed_job.rb │ ├── extensions.rb │ ├── filter_parameter_logging.rb │ ├── gov_uk_notify_rails.rb │ ├── host_env.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── name_synonyms.csv │ ├── new_framework_defaults_7_0.rb │ ├── opensearch.rb │ ├── paper_trail.rb │ ├── permissions_policy.rb │ ├── sentry.rb │ ├── session_store.rb │ ├── simple_name_synonyms.csv │ └── wrap_parameters.rb ├── jshint.yml ├── kubernetes │ ├── development │ │ ├── deployment.yaml │ │ ├── env-configmap.yaml │ │ ├── ingress-live.yaml │ │ └── service.yaml │ ├── production │ │ ├── cron-never-logged-in-notifier.yaml │ │ ├── cron-person-notifier.yaml │ │ ├── cron-person-update-reminder.yaml │ │ ├── cron-team-description-notifier.yaml │ │ ├── deployment.yaml │ │ ├── env-configmap.yaml │ │ ├── ingress-live.yaml │ │ └── service.yaml │ └── staging │ │ ├── deployment.yaml │ │ ├── env-configmap.yaml │ │ ├── ingress-live.yaml │ │ └── service.yaml ├── locales │ ├── en.yml │ └── pages.en.yml ├── puma.rb ├── routes.rb ├── secrets.yml └── storage.yml ├── db ├── migrate │ ├── 20141014092058_initial_schema.rb │ ├── 20141014092059_migrate_item_types_in_versions.rb │ ├── 20141022133535_add_tags_to_people.rb │ ├── 20141030110921_add_communities.rb │ ├── 20141124125254_add_login_count_and_last_login_at_to_person.rb │ ├── 20150130104922_add_super_admin_to_people.rb │ ├── 20150213114203_detoxify_yaml.rb │ ├── 20150213114204_add_ip_address_to_versions.rb │ ├── 20150213114205_add_user_agent_to_versions.rb │ ├── 20150213114206_remove_group_responsibilities.rb │ ├── 20150213114207_remove_no_phone.rb │ ├── 20150216160126_add_additional_location_fields.rb │ ├── 20150225172300_create_delayed_jobs.rb │ ├── 20150310110342_add_unique_constraint_to_email.rb │ ├── 20150310110343_remove_team_email_address_from_group.rb │ ├── 20150310110344_add_subscribed_to_membership.rb │ ├── 20150402143602_drop_information_requests.rb │ ├── 20150402143603_drop_reported_profiles.rb │ ├── 20150402143604_normalize_email_case.rb │ ├── 20150402143820_create_permitted_domains.rb │ ├── 20150403162416_add_spent_bool_field_to_tokens.rb │ ├── 20150407101222_remove_yaml_namespace.rb │ ├── 20150413101844_additional_email.rb │ ├── 20150417141735_acronyms_for_groups.rb │ ├── 20150420132554_create_profile_photos.rb │ ├── 20150420132854_add_profile_photo_id_to_people.rb │ ├── 20150604110007_remove_invalid_relationships.rb │ ├── 20150604110654_enforce_membership_integrity.rb │ ├── 20151217094046_add_last_reminder_email_at_to_people.rb │ ├── 20160304155510_add_description_reminder_email_at_to_group.rb │ ├── 20160308105233_add_current_project_to_person.rb │ ├── 20160407145602_remove_tags_from_people.rb │ ├── 20160411134824_remove_communities.rb │ ├── 20160418124145_add_members_completion_score_to_groups.rb │ ├── 20160419131143_populate_group_members_completion_score.rb │ ├── 20160719084601_add_pager_number_to_people.rb │ ├── 20170206171634_create_queued_notifications.rb │ ├── 20170228181641_create_reports.rb │ ├── 20221215113851_add_swap_email_display_to_people.rb │ ├── 20240522140110_create_external_users.rb │ └── 20240523135243_add_unique_constraint_to_external_user_email.rb ├── schema.rb ├── seeds.rb └── seeds │ ├── data │ └── permitted_domains.yml │ └── permitted_domains.rb ├── doc └── created.rid ├── docker-compose.yml ├── lib ├── assets │ └── .keep ├── csv_publisher │ └── user_behavior_report.rb ├── ext │ └── govuk_elements_errors_helper_extensions.rb ├── generators │ └── query │ │ ├── USAGE │ │ └── query_generator.rb ├── rails_host.rb ├── secure.rb └── tasks │ ├── .keep │ ├── brakeman.rake │ ├── coverage_report.rake │ ├── jshint.rake │ ├── opensearch.rake │ ├── peoplefinder │ ├── data.rake │ ├── db.rake │ ├── es.rake │ └── import.rake │ ├── quiet.rake │ └── rubocop.rake ├── log └── .keep ├── policy.xml ├── public ├── assets │ ├── fonts.css │ ├── fonts │ │ ├── bold-affa96571d-v2.woff │ │ ├── bold-b542beb274-v2.woff2 │ │ ├── light-94a07e06a1-v2.woff2 │ │ └── light-f591b13f7d-v2.woff │ ├── govuk-frontend.min.css │ ├── govuk-frontend.min.css.map │ ├── govuk-template-print.css │ ├── govuk-template.css │ ├── images │ │ └── govuk-crest.svg │ ├── open-government-licence_2x-6358dc1ac32ab1d9190980e7a064a2c5138cd1ebdcf274fa7b56e5725e482745.png │ └── opengraph-image.png ├── favicon.ico ├── favicon.svg ├── govuk-icon-180.png ├── govuk-icon-192.png ├── govuk-icon-512.png ├── govuk-icon-mask.svg ├── govuk-opengraph-image.png ├── maintenance.html ├── moj_logo_horizontal_36x246.png ├── open-government-licence.png └── robots.txt ├── pull_request_template.md ├── spec ├── config │ └── initializers │ │ └── delayed_job_spec.rb ├── controllers │ ├── api │ │ └── people_controller_spec.rb │ ├── concerns │ │ ├── shared_examples_for_session_person_creator.rb │ │ └── shared_examples_for_user_agent_helper.rb │ ├── groups_controller_spec.rb │ ├── health_check_controller_spec.rb │ ├── home_controller_spec.rb │ ├── people_controller_spec.rb │ ├── person_email_controller_spec.rb │ ├── ping_controller_spec.rb │ ├── profile_photos_controller_spec.rb │ ├── search_controller_spec.rb │ ├── sessions_controller_spec.rb │ ├── suggestions_controller_spec.rb │ ├── tokens_controller_spec.rb │ └── versions_controller_spec.rb ├── factories.rb ├── features │ ├── analytics_spec.rb │ ├── application_health_check_spec.rb │ ├── audit_trail_spec.rb │ ├── cookie_message_spec.rb │ ├── csv_upload_spec.rb │ ├── flash_spec.rb │ ├── group_audit_spec.rb │ ├── group_browsing_spec.rb │ ├── group_maintenance_spec.rb │ ├── home_spec.rb │ ├── login_flow_spec.rb │ ├── login_page_spec.rb │ ├── management_spec.rb │ ├── person_audit_spec.rb │ ├── person_browsing_spec.rb │ ├── person_edit_notifications_spec.rb │ ├── person_maintenance_spec.rb │ ├── person_membership_spec.rb │ ├── regression_spec.rb │ ├── report_a_problem_spec.rb │ ├── search_filter_spec.rb │ ├── search_spec.rb │ ├── suggestion_spec.rb │ ├── token_authentication_spec.rb │ └── token_user_email_shared.rb ├── fixtures │ ├── invalid_header.csv │ ├── invalid_header_with_optionals.csv │ ├── invalid_rows.csv │ ├── invalid_rows_with_optionals.csv │ ├── placeholder.bmp │ ├── placeholder.png │ ├── profile_photo_large.png │ ├── profile_photo_too_small_dimensions.png │ ├── profile_photo_valid.png │ ├── valid.csv │ └── valid_with_optionals.csv ├── form_builders │ ├── person_form_builder_spec.rb │ └── suggestion_form_builder_spec.rb ├── helpers │ ├── analytics_helper_spec.rb │ ├── application_helper_spec.rb │ ├── breadcrumb_helper_spec.rb │ ├── mail_helper_spec.rb │ ├── people_helper_spec.rb │ ├── search_helper_spec.rb │ └── upload_helper_spec.rb ├── jobs │ ├── generate_report_job_spec.rb │ ├── notification_sender_spec.rb │ ├── person_import_job_spec.rb │ └── update_group_members_completion_score_job_spec.rb ├── lib │ ├── csv_publisher │ │ └── user_behavior_report_spec.rb │ ├── rails_host_spec.rb │ └── secure_spec.rb ├── mailers │ ├── group_update_mailer_spec.rb │ ├── previews │ │ ├── group_update_mailer_preview.rb │ │ ├── preview_helper.rb │ │ ├── problem_report_mailer_preview.rb │ │ ├── reminder_mailer_preview.rb │ │ ├── suggestion_mailer_preview.rb │ │ ├── token_mailer_preview.rb │ │ └── user_update_mailer_preview.rb │ ├── problem_report_mailer_spec.rb │ ├── reminder_mailer_spec.rb │ ├── suggestion_mailer_spec.rb │ ├── token_mailer_spec.rb │ └── user_update_mailer_spec.rb ├── models │ ├── concerns │ │ ├── bucketed_completion_spec.rb │ │ ├── completion_spec.rb │ │ ├── concatenated_fields_spec.rb │ │ ├── placeholder_spec.rb │ │ ├── sanitizable_spec.rb │ │ └── work_days_spec.rb │ ├── email_address_spec.rb │ ├── external_user_spec.rb │ ├── group_spec.rb │ ├── health_check │ │ ├── database_configuration_spec.rb │ │ ├── database_spec.rb │ │ └── open_search_spec.rb │ ├── ip_address_matcher_spec.rb │ ├── membership_spec.rb │ ├── permitted_domain_spec.rb │ ├── person_spec.rb │ ├── person_upload_spec.rb │ ├── problem_report_spec.rb │ ├── profile_photo_spec.rb │ ├── queued_notification_spec.rb │ ├── readonly_user_spec.rb │ ├── report_spec.rb │ ├── suggestion_spec.rb │ ├── token_spec.rb │ └── version_spec.rb ├── policies │ ├── admin │ │ ├── management_policy_spec.rb │ │ └── person_upload_policy_spec.rb │ ├── group_policy_spec.rb │ └── person_policy_spec.rb ├── presenters │ ├── audit_version_presenter_spec.rb │ ├── membership_changes_presenter_spec.rb │ ├── person_changes_presenter_spec.rb │ └── profile_changes_presenter_spec.rb ├── queries │ ├── distinct_membership_query_spec.rb │ ├── namesakes_query_spec.rb │ ├── people_in_groups_query_spec.rb │ └── user_behavior_query_spec.rb ├── rails_helper.rb ├── services │ ├── deployment_spec.rb │ ├── email_extractor_spec.rb │ ├── group_lister_spec.rb │ ├── group_search_spec.rb │ ├── group_update_service_spec.rb │ ├── login_spec.rb │ ├── never_logged_in_notifier_spec.rb │ ├── person_creator_spec.rb │ ├── person_csv_importer_spec.rb │ ├── person_csv_parser_spec.rb │ ├── person_destroyer_spec.rb │ ├── person_search_spec.rb │ ├── person_update_notifier_spec.rb │ ├── person_updater_spec.rb │ ├── profile_change_aggregator_spec.rb │ ├── random_generator_spec.rb │ ├── search_results_spec.rb │ ├── shared_examples_for_notifiers.rb │ ├── shared_examples_for_search.rb │ ├── state_manager_cookie_spec.rb │ ├── suggestion_delivery_spec.rb │ ├── team_description_notifier_spec.rb │ ├── token_login_spec.rb │ └── token_sender_spec.rb ├── spec_helper.rb ├── support │ ├── active_job_helper.rb │ ├── app_config.rb │ ├── carrierwave.rb │ ├── db_helper.rb │ ├── email.rb │ ├── feature_flag_spec_helper.rb │ ├── feature_flags.rb │ ├── login.rb │ ├── matchers │ │ ├── delayed_job_matchers.rb │ │ ├── file_matchers.rb │ │ ├── general_matchers.rb │ │ ├── json_matchers.rb │ │ ├── page_element_matchers.rb │ │ ├── pundit_matcher.rb │ │ ├── sql_matchers.rb │ │ └── whenever_matchers.rb │ ├── open_search_helper.rb │ ├── org_browser.rb │ ├── pages │ │ ├── base.rb │ │ ├── edit_group.rb │ │ ├── edit_profile.rb │ │ ├── group.rb │ │ ├── home.rb │ │ ├── login.rb │ │ ├── management.rb │ │ ├── new_group.rb │ │ ├── new_profile.rb │ │ ├── person_confirm.rb │ │ ├── person_email_confirm.rb │ │ ├── profile.rb │ │ ├── search.rb │ │ ├── sections │ │ │ ├── about_usage.rb │ │ │ ├── audit.rb │ │ │ ├── department_overview.rb │ │ │ ├── error_summary.rb │ │ │ ├── group_form.rb │ │ │ ├── membership_panel.rb │ │ │ ├── person_confirm_form.rb │ │ │ ├── person_confirm_search_results.rb │ │ │ ├── person_email_confirm_form.rb │ │ │ ├── profile_form.rb │ │ │ ├── search_filters_form.rb │ │ │ ├── search_footer.rb │ │ │ ├── search_form.rb │ │ │ └── search_results.rb │ │ └── token_created.rb │ ├── permitted_domain_helper.rb │ ├── profile.rb │ ├── search.rb │ ├── shared_examples_for_changes_presenter.rb │ └── shoulda_matchers.rb ├── uploaders │ └── image_uploader_spec.rb ├── validators │ ├── email_validator_spec.rb │ ├── file_size_validator_spec.rb │ └── image_dimensions_validator_spec.rb └── views │ └── search │ └── _person.html.haml_spec.rb ├── tmp └── parallel_runtime_rspec.log └── vendor └── assets ├── components └── Jcrop │ ├── .bower.json │ ├── MIT-LICENSE.txt │ ├── README.md │ ├── css │ ├── Jcrop.gif │ ├── jquery.Jcrop.css │ └── jquery.Jcrop.min.css │ ├── index.html │ └── js │ ├── jquery.Jcrop.js │ ├── jquery.Jcrop.min.js │ ├── jquery.color.js │ └── jquery.min.js ├── javascripts ├── .keep ├── bind.js ├── lodash.js ├── moj.js └── select2 │ ├── i18n │ ├── az.js │ ├── bg.js │ ├── ca.js │ ├── cs.js │ ├── da.js │ ├── de.js │ ├── en.js │ ├── es.js │ ├── et.js │ ├── eu.js │ ├── fa.js │ ├── fi.js │ ├── fr.js │ ├── gl.js │ ├── hi.js │ ├── hr.js │ ├── hu.js │ ├── id.js │ ├── is.js │ ├── it.js │ ├── ko.js │ ├── lt.js │ ├── lv.js │ ├── mk.js │ ├── nb.js │ ├── nl.js │ ├── pl.js │ ├── pt-BR.js │ ├── pt.js │ ├── ro.js │ ├── ru.js │ ├── sk.js │ ├── sr.js │ ├── sv.js │ ├── th.js │ ├── tr.js │ ├── uk.js │ ├── vi.js │ ├── zh-CN.js │ └── zh-TW.js │ ├── select2.full.js │ ├── select2.full.min.js │ ├── select2.js │ └── select2.min.js └── stylesheets ├── .keep └── select2 ├── select2.css └── select2.min.css /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "vendor/assets/components" 3 | } 4 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/.env -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/.env.example -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/notification.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/.github/workflows/notification.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | --no-profile 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.3.5 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/bg_not_working_day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/bg_not_working_day.png -------------------------------------------------------------------------------- /app/assets/images/bg_not_working_day_retina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/bg_not_working_day_retina.png -------------------------------------------------------------------------------- /app/assets/images/icon_add_person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/icon_add_person.png -------------------------------------------------------------------------------- /app/assets/images/icon_add_person_retina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/icon_add_person_retina.png -------------------------------------------------------------------------------- /app/assets/images/icon_add_subteam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/icon_add_subteam.png -------------------------------------------------------------------------------- /app/assets/images/icon_add_subteam_retina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/icon_add_subteam_retina.png -------------------------------------------------------------------------------- /app/assets/images/icon_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/icon_arrow.png -------------------------------------------------------------------------------- /app/assets/images/icon_arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/icon_arrow_left.png -------------------------------------------------------------------------------- /app/assets/images/icon_arrow_retina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/icon_arrow_retina.png -------------------------------------------------------------------------------- /app/assets/images/icon_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/icon_delete.png -------------------------------------------------------------------------------- /app/assets/images/icon_delete_retina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/icon_delete_retina.png -------------------------------------------------------------------------------- /app/assets/images/icon_edit_team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/icon_edit_team.png -------------------------------------------------------------------------------- /app/assets/images/icon_edit_team_retina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/icon_edit_team_retina.png -------------------------------------------------------------------------------- /app/assets/images/icon_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/icon_group.png -------------------------------------------------------------------------------- /app/assets/images/icon_group_retina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/icon_group_retina.png -------------------------------------------------------------------------------- /app/assets/images/icon_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/icon_info.png -------------------------------------------------------------------------------- /app/assets/images/icon_info_retina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/icon_info_retina.png -------------------------------------------------------------------------------- /app/assets/images/icon_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/icon_plus.png -------------------------------------------------------------------------------- /app/assets/images/icon_plus_retina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/icon_plus_retina.png -------------------------------------------------------------------------------- /app/assets/images/icon_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/icon_search.png -------------------------------------------------------------------------------- /app/assets/images/icon_search_retina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/icon_search_retina.png -------------------------------------------------------------------------------- /app/assets/images/icon_team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/icon_team.png -------------------------------------------------------------------------------- /app/assets/images/icon_team_retina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/icon_team_retina.png -------------------------------------------------------------------------------- /app/assets/images/jcrop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/jcrop.gif -------------------------------------------------------------------------------- /app/assets/images/loading_100x100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/loading_100x100.gif -------------------------------------------------------------------------------- /app/assets/images/loading_200x200.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/loading_200x200.gif -------------------------------------------------------------------------------- /app/assets/images/medium_no_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/medium_no_photo.png -------------------------------------------------------------------------------- /app/assets/images/medium_no_photo_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/medium_no_photo_old.png -------------------------------------------------------------------------------- /app/assets/images/medium_team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/medium_team.png -------------------------------------------------------------------------------- /app/assets/images/medium_team_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/medium_team_old.png -------------------------------------------------------------------------------- /app/assets/images/moj_logo_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/moj_logo_email.png -------------------------------------------------------------------------------- /app/assets/images/moj_logo_horizontal_36x64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/moj_logo_horizontal_36x64.gif -------------------------------------------------------------------------------- /app/assets/images/peoplefinder/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/peoplefinder/breadcrumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/peoplefinder/breadcrumb.gif -------------------------------------------------------------------------------- /app/assets/images/search-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/images/search-button.png -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/analytics_event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/javascripts/modules/analytics_event.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/moj.Helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/javascripts/modules/moj.Helpers.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/moj.Module.loadtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/javascripts/modules/moj.Module.loadtime.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/moj.Module.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/javascripts/modules/moj.Module.search.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/moj.format_helper.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | 'use strict'; 3 | 4 | }()); -------------------------------------------------------------------------------- /app/assets/javascripts/modules/moj.sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/javascripts/modules/moj.sample.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/moj.wordcount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/javascripts/modules/moj.wordcount.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/team_selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/javascripts/modules/team_selector.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/virtual_pageview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/javascripts/modules/virtual_pageview.js -------------------------------------------------------------------------------- /app/assets/javascripts/peoplefinder/photo_upload.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/javascripts/peoplefinder/photo_upload.js.erb -------------------------------------------------------------------------------- /app/assets/javascripts/peoplefinder/suggestions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/javascripts/peoplefinder/suggestions.js -------------------------------------------------------------------------------- /app/assets/stylesheets/application-ie6.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/application-ie6.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application-ie7.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/application-ie7.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application-ie8.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/application-ie8.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/elements-local/_anchors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/elements-local/_anchors.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/elements-local/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/elements-local/_button.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/elements-local/_checkboxes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/elements-local/_checkboxes.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/elements-local/_details.scss: -------------------------------------------------------------------------------- 1 | details { 2 | margin-bottom: $gutter/5; 3 | } -------------------------------------------------------------------------------- /app/assets/stylesheets/elements-local/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/elements-local/_footer.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/elements-local/_proposition-menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/elements-local/_proposition-menu.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/elements-local/_search-highlight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/elements-local/_search-highlight.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/elements-local/_textarea.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/elements-local/_textarea.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/elements-local/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/elements-local/_typography.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/elements/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/elements/_button.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/elements/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/elements/_typography.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/email.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/email.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/modules/_module-complete-indicator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/modules/_module-complete-indicator.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/modules/_module-feedback-form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/modules/_module-feedback-form.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/modules/_module-flash-messages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/modules/_module-flash-messages.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/modules/_module-headers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/modules/_module-headers.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/modules/_module-home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/modules/_module-home.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/modules/_module-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/modules/_module-list.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/modules/_module-media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/modules/_module-media.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/modules/_module-pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/modules/_module-pagination.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/modules/_module-proposition-links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/modules/_module-proposition-links.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/modules/_module-search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/modules/_module-search.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/modules/_module-subgroups.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/modules/_module-subgroups.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/modules/_module-suggestions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/modules/_module-suggestions.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/modules/_module-team-overview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/modules/_module-team-overview.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/modules/_module-team-selector.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/modules/_module-team-selector.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/modules/_module-team-subgroup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/modules/_module-team-subgroup.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/modules/_module-textarea-help.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/modules/_module-textarea-help.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/modules/_module-wrap-long-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/modules/_module-wrap-long-text.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/modules/_xmodule_person_photos.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/modules/_xmodule_person_photos.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/assets/stylesheets/print.scss -------------------------------------------------------------------------------- /app/controllers/admin/management_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/controllers/admin/management_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/person_uploads_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/controllers/admin/person_uploads_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/controllers/api/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/people_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/controllers/api/people_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/session_person_creator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/controllers/concerns/session_person_creator.rb -------------------------------------------------------------------------------- /app/controllers/concerns/user_agent_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/controllers/concerns/user_agent_helper.rb -------------------------------------------------------------------------------- /app/controllers/errors_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/controllers/errors_controller.rb -------------------------------------------------------------------------------- /app/controllers/groups_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/controllers/groups_controller.rb -------------------------------------------------------------------------------- /app/controllers/health_check_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/controllers/health_check_controller.rb -------------------------------------------------------------------------------- /app/controllers/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/controllers/home_controller.rb -------------------------------------------------------------------------------- /app/controllers/pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/controllers/pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/people_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/controllers/people_controller.rb -------------------------------------------------------------------------------- /app/controllers/person_email_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/controllers/person_email_controller.rb -------------------------------------------------------------------------------- /app/controllers/person_image_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/controllers/person_image_controller.rb -------------------------------------------------------------------------------- /app/controllers/ping_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/controllers/ping_controller.rb -------------------------------------------------------------------------------- /app/controllers/problem_reports_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/controllers/problem_reports_controller.rb -------------------------------------------------------------------------------- /app/controllers/profile_photos_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/controllers/profile_photos_controller.rb -------------------------------------------------------------------------------- /app/controllers/search_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/controllers/search_controller.rb -------------------------------------------------------------------------------- /app/controllers/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/controllers/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/suggestions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/controllers/suggestions_controller.rb -------------------------------------------------------------------------------- /app/controllers/tokens_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/controllers/tokens_controller.rb -------------------------------------------------------------------------------- /app/controllers/versions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/controllers/versions_controller.rb -------------------------------------------------------------------------------- /app/form_builders/person_form_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/form_builders/person_form_builder.rb -------------------------------------------------------------------------------- /app/form_builders/suggestion_form_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/form_builders/suggestion_form_builder.rb -------------------------------------------------------------------------------- /app/helpers/analytics_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/helpers/analytics_helper.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/breadcrumb_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/helpers/breadcrumb_helper.rb -------------------------------------------------------------------------------- /app/helpers/feature_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/helpers/feature_helper.rb -------------------------------------------------------------------------------- /app/helpers/mail_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/helpers/mail_helper.rb -------------------------------------------------------------------------------- /app/helpers/open_search_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/helpers/open_search_helper.rb -------------------------------------------------------------------------------- /app/helpers/org_browser_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/helpers/org_browser_helper.rb -------------------------------------------------------------------------------- /app/helpers/people_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/helpers/people_helper.rb -------------------------------------------------------------------------------- /app/helpers/person_email_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/helpers/person_email_helper.rb -------------------------------------------------------------------------------- /app/helpers/search_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/helpers/search_helper.rb -------------------------------------------------------------------------------- /app/helpers/state_cookie_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/helpers/state_cookie_helper.rb -------------------------------------------------------------------------------- /app/helpers/upload_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/helpers/upload_helper.rb -------------------------------------------------------------------------------- /app/helpers/versions_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/helpers/versions_helper.rb -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/jobs/generate_report_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/jobs/generate_report_job.rb -------------------------------------------------------------------------------- /app/jobs/notification_sender.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/jobs/notification_sender.rb -------------------------------------------------------------------------------- /app/jobs/person_import_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/jobs/person_import_job.rb -------------------------------------------------------------------------------- /app/jobs/update_group_members_completion_score_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/jobs/update_group_members_completion_score_job.rb -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/mailers/group_update_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/mailers/group_update_mailer.rb -------------------------------------------------------------------------------- /app/mailers/problem_report_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/mailers/problem_report_mailer.rb -------------------------------------------------------------------------------- /app/mailers/reminder_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/mailers/reminder_mailer.rb -------------------------------------------------------------------------------- /app/mailers/suggestion_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/mailers/suggestion_mailer.rb -------------------------------------------------------------------------------- /app/mailers/token_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/mailers/token_mailer.rb -------------------------------------------------------------------------------- /app/mailers/user_update_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/mailers/user_update_mailer.rb -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/bucketed_completion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/concerns/bucketed_completion.rb -------------------------------------------------------------------------------- /app/models/concerns/completion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/concerns/completion.rb -------------------------------------------------------------------------------- /app/models/concerns/concatenated_fields.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/concerns/concatenated_fields.rb -------------------------------------------------------------------------------- /app/models/concerns/data_migration_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/concerns/data_migration_utils.rb -------------------------------------------------------------------------------- /app/models/concerns/expose_mandatory_fields.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/concerns/expose_mandatory_fields.rb -------------------------------------------------------------------------------- /app/models/concerns/hierarchical.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/concerns/hierarchical.rb -------------------------------------------------------------------------------- /app/models/concerns/person_changes_tracker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/concerns/person_changes_tracker.rb -------------------------------------------------------------------------------- /app/models/concerns/placeholder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/concerns/placeholder.rb -------------------------------------------------------------------------------- /app/models/concerns/sanitizable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/concerns/sanitizable.rb -------------------------------------------------------------------------------- /app/models/concerns/searchable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/concerns/searchable.rb -------------------------------------------------------------------------------- /app/models/concerns/work_days.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/concerns/work_days.rb -------------------------------------------------------------------------------- /app/models/email_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/email_address.rb -------------------------------------------------------------------------------- /app/models/external_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/external_user.rb -------------------------------------------------------------------------------- /app/models/group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/group.rb -------------------------------------------------------------------------------- /app/models/health_check.rb: -------------------------------------------------------------------------------- 1 | module HealthCheck 2 | end 3 | -------------------------------------------------------------------------------- /app/models/health_check/component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/health_check/component.rb -------------------------------------------------------------------------------- /app/models/health_check/database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/health_check/database.rb -------------------------------------------------------------------------------- /app/models/health_check/database_configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/health_check/database_configuration.rb -------------------------------------------------------------------------------- /app/models/health_check/open_search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/health_check/open_search.rb -------------------------------------------------------------------------------- /app/models/home.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/home.rb -------------------------------------------------------------------------------- /app/models/ip_address_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/ip_address_matcher.rb -------------------------------------------------------------------------------- /app/models/membership.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/membership.rb -------------------------------------------------------------------------------- /app/models/permitted_domain.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/permitted_domain.rb -------------------------------------------------------------------------------- /app/models/person.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/person.rb -------------------------------------------------------------------------------- /app/models/person_upload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/person_upload.rb -------------------------------------------------------------------------------- /app/models/problem_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/problem_report.rb -------------------------------------------------------------------------------- /app/models/profile_photo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/profile_photo.rb -------------------------------------------------------------------------------- /app/models/queued_notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/queued_notification.rb -------------------------------------------------------------------------------- /app/models/readonly_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/readonly_user.rb -------------------------------------------------------------------------------- /app/models/report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/report.rb -------------------------------------------------------------------------------- /app/models/suggestion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/suggestion.rb -------------------------------------------------------------------------------- /app/models/token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/token.rb -------------------------------------------------------------------------------- /app/models/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/models/version.rb -------------------------------------------------------------------------------- /app/policies/admin/management_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/policies/admin/management_policy.rb -------------------------------------------------------------------------------- /app/policies/admin/person_upload_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/policies/admin/person_upload_policy.rb -------------------------------------------------------------------------------- /app/policies/application_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/policies/application_policy.rb -------------------------------------------------------------------------------- /app/policies/group_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/policies/group_policy.rb -------------------------------------------------------------------------------- /app/policies/person_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/policies/person_policy.rb -------------------------------------------------------------------------------- /app/policies/version_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/policies/version_policy.rb -------------------------------------------------------------------------------- /app/presenters/audit_version_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/presenters/audit_version_presenter.rb -------------------------------------------------------------------------------- /app/presenters/changes_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/presenters/changes_presenter.rb -------------------------------------------------------------------------------- /app/presenters/membership_change_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/presenters/membership_change_set.rb -------------------------------------------------------------------------------- /app/presenters/membership_changes_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/presenters/membership_changes_presenter.rb -------------------------------------------------------------------------------- /app/presenters/person_changes_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/presenters/person_changes_presenter.rb -------------------------------------------------------------------------------- /app/presenters/profile_changes_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/presenters/profile_changes_presenter.rb -------------------------------------------------------------------------------- /app/queries/base_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/queries/base_query.rb -------------------------------------------------------------------------------- /app/queries/distinct_membership_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/queries/distinct_membership_query.rb -------------------------------------------------------------------------------- /app/queries/namesakes_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/queries/namesakes_query.rb -------------------------------------------------------------------------------- /app/queries/people_in_groups_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/queries/people_in_groups_query.rb -------------------------------------------------------------------------------- /app/queries/user_behavior_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/queries/user_behavior_query.rb -------------------------------------------------------------------------------- /app/services/deployment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/services/deployment.rb -------------------------------------------------------------------------------- /app/services/email_extractor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/services/email_extractor.rb -------------------------------------------------------------------------------- /app/services/group_lister.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/services/group_lister.rb -------------------------------------------------------------------------------- /app/services/group_search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/services/group_search.rb -------------------------------------------------------------------------------- /app/services/group_update_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/services/group_update_service.rb -------------------------------------------------------------------------------- /app/services/login.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/services/login.rb -------------------------------------------------------------------------------- /app/services/never_logged_in_notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/services/never_logged_in_notifier.rb -------------------------------------------------------------------------------- /app/services/person_creator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/services/person_creator.rb -------------------------------------------------------------------------------- /app/services/person_csv_importer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/services/person_csv_importer.rb -------------------------------------------------------------------------------- /app/services/person_csv_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/services/person_csv_parser.rb -------------------------------------------------------------------------------- /app/services/person_destroyer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/services/person_destroyer.rb -------------------------------------------------------------------------------- /app/services/person_search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/services/person_search.rb -------------------------------------------------------------------------------- /app/services/person_update_notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/services/person_update_notifier.rb -------------------------------------------------------------------------------- /app/services/person_updater.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/services/person_updater.rb -------------------------------------------------------------------------------- /app/services/profile_change_aggregator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/services/profile_change_aggregator.rb -------------------------------------------------------------------------------- /app/services/random_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/services/random_generator.rb -------------------------------------------------------------------------------- /app/services/search_results.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/services/search_results.rb -------------------------------------------------------------------------------- /app/services/state_manager_cookie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/services/state_manager_cookie.rb -------------------------------------------------------------------------------- /app/services/suggestion_delivery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/services/suggestion_delivery.rb -------------------------------------------------------------------------------- /app/services/team_description_notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/services/team_description_notifier.rb -------------------------------------------------------------------------------- /app/services/token_login.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/services/token_login.rb -------------------------------------------------------------------------------- /app/services/token_sender.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/services/token_sender.rb -------------------------------------------------------------------------------- /app/uploaders/image_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/uploaders/image_uploader.rb -------------------------------------------------------------------------------- /app/validators/email_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/validators/email_validator.rb -------------------------------------------------------------------------------- /app/validators/file_size_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/validators/file_size_validator.rb -------------------------------------------------------------------------------- /app/validators/image_dimensions_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/validators/image_dimensions_validator.rb -------------------------------------------------------------------------------- /app/validators/permanent_secretary_unique_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/validators/permanent_secretary_unique_validator.rb -------------------------------------------------------------------------------- /app/views/admin/management/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/admin/management/show.html.haml -------------------------------------------------------------------------------- /app/views/admin/person_uploads/_errors.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/admin/person_uploads/_errors.html.haml -------------------------------------------------------------------------------- /app/views/admin/person_uploads/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/admin/person_uploads/_form.html.haml -------------------------------------------------------------------------------- /app/views/admin/person_uploads/_hint.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/admin/person_uploads/_hint.html.haml -------------------------------------------------------------------------------- /app/views/admin/person_uploads/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/admin/person_uploads/new.html.haml -------------------------------------------------------------------------------- /app/views/errors/internal_error.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/errors/internal_error.html.erb -------------------------------------------------------------------------------- /app/views/errors/not_found.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/errors/not_found.html.erb -------------------------------------------------------------------------------- /app/views/groups/_all_people_pagination.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/groups/_all_people_pagination.html.haml -------------------------------------------------------------------------------- /app/views/groups/_breadcrumbs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/groups/_breadcrumbs.html.haml -------------------------------------------------------------------------------- /app/views/groups/_detail.html.haml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/groups/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/groups/_form.html.haml -------------------------------------------------------------------------------- /app/views/groups/_heading_links.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/groups/_heading_links.html.haml -------------------------------------------------------------------------------- /app/views/groups/_leaderships.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/groups/_leaderships.html.haml -------------------------------------------------------------------------------- /app/views/groups/_people_in_team.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/groups/_people_in_team.html.haml -------------------------------------------------------------------------------- /app/views/groups/_subgroup.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/groups/_subgroup.html.haml -------------------------------------------------------------------------------- /app/views/groups/_teams_in_team.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/groups/_teams_in_team.html.haml -------------------------------------------------------------------------------- /app/views/groups/all_people.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/groups/all_people.html.haml -------------------------------------------------------------------------------- /app/views/groups/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/groups/edit.html.haml -------------------------------------------------------------------------------- /app/views/groups/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/groups/new.html.haml -------------------------------------------------------------------------------- /app/views/groups/organogram.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/groups/organogram.html.haml -------------------------------------------------------------------------------- /app/views/groups/people_outside_subteams.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/groups/people_outside_subteams.html.haml -------------------------------------------------------------------------------- /app/views/groups/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/groups/show.html.haml -------------------------------------------------------------------------------- /app/views/home/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/home/show.html.haml -------------------------------------------------------------------------------- /app/views/information_requests/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/information_requests/new.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/layouts/_footer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/layouts/application.html.haml -------------------------------------------------------------------------------- /app/views/layouts/govuk_template.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/layouts/govuk_template.html.erb -------------------------------------------------------------------------------- /app/views/memberships/_summary.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/memberships/_summary.html.haml -------------------------------------------------------------------------------- /app/views/pages/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/pages/show.html.haml -------------------------------------------------------------------------------- /app/views/people/_action_links.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/people/_action_links.haml -------------------------------------------------------------------------------- /app/views/people/_breadcrumbs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/people/_breadcrumbs.html.haml -------------------------------------------------------------------------------- /app/views/people/_completeness.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/people/_completeness.html.haml -------------------------------------------------------------------------------- /app/views/people/_day.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/people/_day.html.haml -------------------------------------------------------------------------------- /app/views/people/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/people/_form.html.haml -------------------------------------------------------------------------------- /app/views/people/_membership_fields.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/people/_membership_fields.html.haml -------------------------------------------------------------------------------- /app/views/people/_profile.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/people/_profile.html.haml -------------------------------------------------------------------------------- /app/views/people/_request_information.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/people/_request_information.html.haml -------------------------------------------------------------------------------- /app/views/people/_summary.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/people/_summary.html.haml -------------------------------------------------------------------------------- /app/views/people/_team_selector.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/people/_team_selector.html.haml -------------------------------------------------------------------------------- /app/views/people/_working_days.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/people/_working_days.html.haml -------------------------------------------------------------------------------- /app/views/people/add_membership.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/people/add_membership.html.haml -------------------------------------------------------------------------------- /app/views/people/confirm.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/people/confirm.html.haml -------------------------------------------------------------------------------- /app/views/people/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/people/edit.html.haml -------------------------------------------------------------------------------- /app/views/people/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/people/new.html.haml -------------------------------------------------------------------------------- /app/views/people/remove_membership.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/people/remove_membership.html.haml -------------------------------------------------------------------------------- /app/views/people/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/people/show.html.haml -------------------------------------------------------------------------------- /app/views/person_email/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/person_email/edit.html.haml -------------------------------------------------------------------------------- /app/views/person_image/_breadcrumbs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/person_image/_breadcrumbs.html.haml -------------------------------------------------------------------------------- /app/views/person_image/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/person_image/edit.html.haml -------------------------------------------------------------------------------- /app/views/reported_profiles/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/reported_profiles/new.html.haml -------------------------------------------------------------------------------- /app/views/search/_filter_sidebar.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/search/_filter_sidebar.html.haml -------------------------------------------------------------------------------- /app/views/search/_person.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/search/_person.html.haml -------------------------------------------------------------------------------- /app/views/search/_person_confirmation.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/search/_person_confirmation.html.haml -------------------------------------------------------------------------------- /app/views/search/_team.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/search/_team.html.haml -------------------------------------------------------------------------------- /app/views/search/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/search/index.html.haml -------------------------------------------------------------------------------- /app/views/sessions/_login_page.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/sessions/_login_page.html.haml -------------------------------------------------------------------------------- /app/views/sessions/failed.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/sessions/failed.html.haml -------------------------------------------------------------------------------- /app/views/sessions/new.html.haml: -------------------------------------------------------------------------------- 1 | = render partial: 'login_page' 2 | -------------------------------------------------------------------------------- /app/views/sessions/person_confirm.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/sessions/person_confirm.html.haml -------------------------------------------------------------------------------- /app/views/sessions/unsupported_browser.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/sessions/unsupported_browser.html.haml -------------------------------------------------------------------------------- /app/views/shared/_audit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/shared/_audit.html.haml -------------------------------------------------------------------------------- /app/views/shared/_breadcrumb.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/shared/_breadcrumb.html.haml -------------------------------------------------------------------------------- /app/views/shared/_breadcrumbs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/shared/_breadcrumbs.html.haml -------------------------------------------------------------------------------- /app/views/shared/_edit_links_NOT_USED.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/shared/_edit_links_NOT_USED.html.haml -------------------------------------------------------------------------------- /app/views/shared/_feedback_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/shared/_feedback_form.html.haml -------------------------------------------------------------------------------- /app/views/shared/_loginout.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/shared/_loginout.html.haml -------------------------------------------------------------------------------- /app/views/shared/_org_browser.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/shared/_org_browser.html.haml -------------------------------------------------------------------------------- /app/views/shared/_org_browser_level.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/shared/_org_browser_level.html.haml -------------------------------------------------------------------------------- /app/views/shared/_org_browser_level_heading.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/shared/_org_browser_level_heading.html.haml -------------------------------------------------------------------------------- /app/views/shared/_org_browser_level_subgroups.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/shared/_org_browser_level_subgroups.html.haml -------------------------------------------------------------------------------- /app/views/shared/_search.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/shared/_search.html.haml -------------------------------------------------------------------------------- /app/views/suggestions/create.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/suggestions/create.html.haml -------------------------------------------------------------------------------- /app/views/suggestions/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/suggestions/new.html.haml -------------------------------------------------------------------------------- /app/views/tokens/create.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/tokens/create.html.haml -------------------------------------------------------------------------------- /app/views/tokens/failed.html.haml: -------------------------------------------------------------------------------- 1 | = render partial: 'sessions/login_page' 2 | -------------------------------------------------------------------------------- /app/views/tokens/new.html.haml: -------------------------------------------------------------------------------- 1 | = render partial: 'sessions/login_page' 2 | -------------------------------------------------------------------------------- /app/views/tokens/unsupported_browser.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/tokens/unsupported_browser.html.haml -------------------------------------------------------------------------------- /app/views/versions/_general.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/versions/_general.html.haml -------------------------------------------------------------------------------- /app/views/versions/_membership.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/versions/_membership.html.haml -------------------------------------------------------------------------------- /app/views/versions/_pagination.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/versions/_pagination.html.haml -------------------------------------------------------------------------------- /app/views/versions/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/app/views/versions/index.html.haml -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/delayed_job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/bin/delayed_job -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/bin/update -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/bower.json -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/brakeman.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/brakeman.ignore -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/docker/entrypoint-jobs.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set +ex 3 | 4 | RAILS_ENV=production bin/delayed_job run 5 | -------------------------------------------------------------------------------- /config/docker/entrypoint-webapp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/docker/entrypoint-webapp.sh -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/action_view_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/initializers/action_view_patch.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/carrierwave.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/initializers/carrierwave.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/delayed_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/initializers/delayed_job.rb -------------------------------------------------------------------------------- /config/initializers/extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/initializers/extensions.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/gov_uk_notify_rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/initializers/gov_uk_notify_rails.rb -------------------------------------------------------------------------------- /config/initializers/host_env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/initializers/host_env.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/name_synonyms.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/initializers/name_synonyms.csv -------------------------------------------------------------------------------- /config/initializers/new_framework_defaults_7_0.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/initializers/new_framework_defaults_7_0.rb -------------------------------------------------------------------------------- /config/initializers/opensearch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/initializers/opensearch.rb -------------------------------------------------------------------------------- /config/initializers/paper_trail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/initializers/paper_trail.rb -------------------------------------------------------------------------------- /config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /config/initializers/sentry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/initializers/sentry.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/simple_name_synonyms.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/initializers/simple_name_synonyms.csv -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/jshint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/jshint.yml -------------------------------------------------------------------------------- /config/kubernetes/development/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/kubernetes/development/deployment.yaml -------------------------------------------------------------------------------- /config/kubernetes/development/env-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/kubernetes/development/env-configmap.yaml -------------------------------------------------------------------------------- /config/kubernetes/development/ingress-live.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/kubernetes/development/ingress-live.yaml -------------------------------------------------------------------------------- /config/kubernetes/development/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/kubernetes/development/service.yaml -------------------------------------------------------------------------------- /config/kubernetes/production/cron-never-logged-in-notifier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/kubernetes/production/cron-never-logged-in-notifier.yaml -------------------------------------------------------------------------------- /config/kubernetes/production/cron-person-notifier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/kubernetes/production/cron-person-notifier.yaml -------------------------------------------------------------------------------- /config/kubernetes/production/cron-person-update-reminder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/kubernetes/production/cron-person-update-reminder.yaml -------------------------------------------------------------------------------- /config/kubernetes/production/cron-team-description-notifier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/kubernetes/production/cron-team-description-notifier.yaml -------------------------------------------------------------------------------- /config/kubernetes/production/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/kubernetes/production/deployment.yaml -------------------------------------------------------------------------------- /config/kubernetes/production/env-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/kubernetes/production/env-configmap.yaml -------------------------------------------------------------------------------- /config/kubernetes/production/ingress-live.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/kubernetes/production/ingress-live.yaml -------------------------------------------------------------------------------- /config/kubernetes/production/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/kubernetes/production/service.yaml -------------------------------------------------------------------------------- /config/kubernetes/staging/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/kubernetes/staging/deployment.yaml -------------------------------------------------------------------------------- /config/kubernetes/staging/env-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/kubernetes/staging/env-configmap.yaml -------------------------------------------------------------------------------- /config/kubernetes/staging/ingress-live.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/kubernetes/staging/ingress-live.yaml -------------------------------------------------------------------------------- /config/kubernetes/staging/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/kubernetes/staging/service.yaml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/pages.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/locales/pages.en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/config/storage.yml -------------------------------------------------------------------------------- /db/migrate/20141014092058_initial_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20141014092058_initial_schema.rb -------------------------------------------------------------------------------- /db/migrate/20141014092059_migrate_item_types_in_versions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20141014092059_migrate_item_types_in_versions.rb -------------------------------------------------------------------------------- /db/migrate/20141022133535_add_tags_to_people.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20141022133535_add_tags_to_people.rb -------------------------------------------------------------------------------- /db/migrate/20141030110921_add_communities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20141030110921_add_communities.rb -------------------------------------------------------------------------------- /db/migrate/20141124125254_add_login_count_and_last_login_at_to_person.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20141124125254_add_login_count_and_last_login_at_to_person.rb -------------------------------------------------------------------------------- /db/migrate/20150130104922_add_super_admin_to_people.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20150130104922_add_super_admin_to_people.rb -------------------------------------------------------------------------------- /db/migrate/20150213114203_detoxify_yaml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20150213114203_detoxify_yaml.rb -------------------------------------------------------------------------------- /db/migrate/20150213114204_add_ip_address_to_versions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20150213114204_add_ip_address_to_versions.rb -------------------------------------------------------------------------------- /db/migrate/20150213114205_add_user_agent_to_versions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20150213114205_add_user_agent_to_versions.rb -------------------------------------------------------------------------------- /db/migrate/20150213114206_remove_group_responsibilities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20150213114206_remove_group_responsibilities.rb -------------------------------------------------------------------------------- /db/migrate/20150213114207_remove_no_phone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20150213114207_remove_no_phone.rb -------------------------------------------------------------------------------- /db/migrate/20150216160126_add_additional_location_fields.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20150216160126_add_additional_location_fields.rb -------------------------------------------------------------------------------- /db/migrate/20150225172300_create_delayed_jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20150225172300_create_delayed_jobs.rb -------------------------------------------------------------------------------- /db/migrate/20150310110342_add_unique_constraint_to_email.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20150310110342_add_unique_constraint_to_email.rb -------------------------------------------------------------------------------- /db/migrate/20150310110343_remove_team_email_address_from_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20150310110343_remove_team_email_address_from_group.rb -------------------------------------------------------------------------------- /db/migrate/20150310110344_add_subscribed_to_membership.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20150310110344_add_subscribed_to_membership.rb -------------------------------------------------------------------------------- /db/migrate/20150402143602_drop_information_requests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20150402143602_drop_information_requests.rb -------------------------------------------------------------------------------- /db/migrate/20150402143603_drop_reported_profiles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20150402143603_drop_reported_profiles.rb -------------------------------------------------------------------------------- /db/migrate/20150402143604_normalize_email_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20150402143604_normalize_email_case.rb -------------------------------------------------------------------------------- /db/migrate/20150402143820_create_permitted_domains.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20150402143820_create_permitted_domains.rb -------------------------------------------------------------------------------- /db/migrate/20150403162416_add_spent_bool_field_to_tokens.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20150403162416_add_spent_bool_field_to_tokens.rb -------------------------------------------------------------------------------- /db/migrate/20150407101222_remove_yaml_namespace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20150407101222_remove_yaml_namespace.rb -------------------------------------------------------------------------------- /db/migrate/20150413101844_additional_email.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20150413101844_additional_email.rb -------------------------------------------------------------------------------- /db/migrate/20150417141735_acronyms_for_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20150417141735_acronyms_for_groups.rb -------------------------------------------------------------------------------- /db/migrate/20150420132554_create_profile_photos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20150420132554_create_profile_photos.rb -------------------------------------------------------------------------------- /db/migrate/20150420132854_add_profile_photo_id_to_people.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20150420132854_add_profile_photo_id_to_people.rb -------------------------------------------------------------------------------- /db/migrate/20150604110007_remove_invalid_relationships.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20150604110007_remove_invalid_relationships.rb -------------------------------------------------------------------------------- /db/migrate/20150604110654_enforce_membership_integrity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20150604110654_enforce_membership_integrity.rb -------------------------------------------------------------------------------- /db/migrate/20151217094046_add_last_reminder_email_at_to_people.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20151217094046_add_last_reminder_email_at_to_people.rb -------------------------------------------------------------------------------- /db/migrate/20160304155510_add_description_reminder_email_at_to_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20160304155510_add_description_reminder_email_at_to_group.rb -------------------------------------------------------------------------------- /db/migrate/20160308105233_add_current_project_to_person.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20160308105233_add_current_project_to_person.rb -------------------------------------------------------------------------------- /db/migrate/20160407145602_remove_tags_from_people.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20160407145602_remove_tags_from_people.rb -------------------------------------------------------------------------------- /db/migrate/20160411134824_remove_communities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20160411134824_remove_communities.rb -------------------------------------------------------------------------------- /db/migrate/20160418124145_add_members_completion_score_to_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20160418124145_add_members_completion_score_to_groups.rb -------------------------------------------------------------------------------- /db/migrate/20160419131143_populate_group_members_completion_score.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20160419131143_populate_group_members_completion_score.rb -------------------------------------------------------------------------------- /db/migrate/20160719084601_add_pager_number_to_people.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20160719084601_add_pager_number_to_people.rb -------------------------------------------------------------------------------- /db/migrate/20170206171634_create_queued_notifications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20170206171634_create_queued_notifications.rb -------------------------------------------------------------------------------- /db/migrate/20170228181641_create_reports.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20170228181641_create_reports.rb -------------------------------------------------------------------------------- /db/migrate/20221215113851_add_swap_email_display_to_people.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20221215113851_add_swap_email_display_to_people.rb -------------------------------------------------------------------------------- /db/migrate/20240522140110_create_external_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20240522140110_create_external_users.rb -------------------------------------------------------------------------------- /db/migrate/20240523135243_add_unique_constraint_to_external_user_email.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/migrate/20240523135243_add_unique_constraint_to_external_user_email.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /db/seeds/data/permitted_domains.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/seeds/data/permitted_domains.yml -------------------------------------------------------------------------------- /db/seeds/permitted_domains.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/db/seeds/permitted_domains.rb -------------------------------------------------------------------------------- /doc/created.rid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/csv_publisher/user_behavior_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/lib/csv_publisher/user_behavior_report.rb -------------------------------------------------------------------------------- /lib/ext/govuk_elements_errors_helper_extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/lib/ext/govuk_elements_errors_helper_extensions.rb -------------------------------------------------------------------------------- /lib/generators/query/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/lib/generators/query/USAGE -------------------------------------------------------------------------------- /lib/generators/query/query_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/lib/generators/query/query_generator.rb -------------------------------------------------------------------------------- /lib/rails_host.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/lib/rails_host.rb -------------------------------------------------------------------------------- /lib/secure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/lib/secure.rb -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/brakeman.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/lib/tasks/brakeman.rake -------------------------------------------------------------------------------- /lib/tasks/coverage_report.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/lib/tasks/coverage_report.rake -------------------------------------------------------------------------------- /lib/tasks/jshint.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/lib/tasks/jshint.rake -------------------------------------------------------------------------------- /lib/tasks/opensearch.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/lib/tasks/opensearch.rake -------------------------------------------------------------------------------- /lib/tasks/peoplefinder/data.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/lib/tasks/peoplefinder/data.rake -------------------------------------------------------------------------------- /lib/tasks/peoplefinder/db.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/lib/tasks/peoplefinder/db.rake -------------------------------------------------------------------------------- /lib/tasks/peoplefinder/es.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/lib/tasks/peoplefinder/es.rake -------------------------------------------------------------------------------- /lib/tasks/peoplefinder/import.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/lib/tasks/peoplefinder/import.rake -------------------------------------------------------------------------------- /lib/tasks/quiet.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/lib/tasks/quiet.rake -------------------------------------------------------------------------------- /lib/tasks/rubocop.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/lib/tasks/rubocop.rake -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/policy.xml -------------------------------------------------------------------------------- /public/assets/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/public/assets/fonts.css -------------------------------------------------------------------------------- /public/assets/fonts/bold-affa96571d-v2.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/public/assets/fonts/bold-affa96571d-v2.woff -------------------------------------------------------------------------------- /public/assets/fonts/bold-b542beb274-v2.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/public/assets/fonts/bold-b542beb274-v2.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/light-94a07e06a1-v2.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/public/assets/fonts/light-94a07e06a1-v2.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/light-f591b13f7d-v2.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/public/assets/fonts/light-f591b13f7d-v2.woff -------------------------------------------------------------------------------- /public/assets/govuk-frontend.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/public/assets/govuk-frontend.min.css -------------------------------------------------------------------------------- /public/assets/govuk-frontend.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/public/assets/govuk-frontend.min.css.map -------------------------------------------------------------------------------- /public/assets/govuk-template-print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/public/assets/govuk-template-print.css -------------------------------------------------------------------------------- /public/assets/govuk-template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/public/assets/govuk-template.css -------------------------------------------------------------------------------- /public/assets/images/govuk-crest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/public/assets/images/govuk-crest.svg -------------------------------------------------------------------------------- /public/assets/open-government-licence_2x-6358dc1ac32ab1d9190980e7a064a2c5138cd1ebdcf274fa7b56e5725e482745.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/public/assets/open-government-licence_2x-6358dc1ac32ab1d9190980e7a064a2c5138cd1ebdcf274fa7b56e5725e482745.png -------------------------------------------------------------------------------- /public/assets/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/public/assets/opengraph-image.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/govuk-icon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/public/govuk-icon-180.png -------------------------------------------------------------------------------- /public/govuk-icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/public/govuk-icon-192.png -------------------------------------------------------------------------------- /public/govuk-icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/public/govuk-icon-512.png -------------------------------------------------------------------------------- /public/govuk-icon-mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/public/govuk-icon-mask.svg -------------------------------------------------------------------------------- /public/govuk-opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/public/govuk-opengraph-image.png -------------------------------------------------------------------------------- /public/maintenance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/public/maintenance.html -------------------------------------------------------------------------------- /public/moj_logo_horizontal_36x246.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/public/moj_logo_horizontal_36x246.png -------------------------------------------------------------------------------- /public/open-government-licence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/public/open-government-licence.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/public/robots.txt -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /spec/config/initializers/delayed_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/config/initializers/delayed_job_spec.rb -------------------------------------------------------------------------------- /spec/controllers/api/people_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/controllers/api/people_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/concerns/shared_examples_for_session_person_creator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/controllers/concerns/shared_examples_for_session_person_creator.rb -------------------------------------------------------------------------------- /spec/controllers/concerns/shared_examples_for_user_agent_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/controllers/concerns/shared_examples_for_user_agent_helper.rb -------------------------------------------------------------------------------- /spec/controllers/groups_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/controllers/groups_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/health_check_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/controllers/health_check_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/home_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/controllers/home_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/people_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/controllers/people_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/person_email_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/controllers/person_email_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/ping_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/controllers/ping_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/profile_photos_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/controllers/profile_photos_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/search_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/controllers/search_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/sessions_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/controllers/sessions_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/suggestions_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/controllers/suggestions_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/tokens_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/controllers/tokens_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/versions_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/controllers/versions_controller_spec.rb -------------------------------------------------------------------------------- /spec/factories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/factories.rb -------------------------------------------------------------------------------- /spec/features/analytics_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/features/analytics_spec.rb -------------------------------------------------------------------------------- /spec/features/application_health_check_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/features/application_health_check_spec.rb -------------------------------------------------------------------------------- /spec/features/audit_trail_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/features/audit_trail_spec.rb -------------------------------------------------------------------------------- /spec/features/cookie_message_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/features/cookie_message_spec.rb -------------------------------------------------------------------------------- /spec/features/csv_upload_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/features/csv_upload_spec.rb -------------------------------------------------------------------------------- /spec/features/flash_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/features/flash_spec.rb -------------------------------------------------------------------------------- /spec/features/group_audit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/features/group_audit_spec.rb -------------------------------------------------------------------------------- /spec/features/group_browsing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/features/group_browsing_spec.rb -------------------------------------------------------------------------------- /spec/features/group_maintenance_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/features/group_maintenance_spec.rb -------------------------------------------------------------------------------- /spec/features/home_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/features/home_spec.rb -------------------------------------------------------------------------------- /spec/features/login_flow_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/features/login_flow_spec.rb -------------------------------------------------------------------------------- /spec/features/login_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/features/login_page_spec.rb -------------------------------------------------------------------------------- /spec/features/management_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/features/management_spec.rb -------------------------------------------------------------------------------- /spec/features/person_audit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/features/person_audit_spec.rb -------------------------------------------------------------------------------- /spec/features/person_browsing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/features/person_browsing_spec.rb -------------------------------------------------------------------------------- /spec/features/person_edit_notifications_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/features/person_edit_notifications_spec.rb -------------------------------------------------------------------------------- /spec/features/person_maintenance_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/features/person_maintenance_spec.rb -------------------------------------------------------------------------------- /spec/features/person_membership_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/features/person_membership_spec.rb -------------------------------------------------------------------------------- /spec/features/regression_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/features/regression_spec.rb -------------------------------------------------------------------------------- /spec/features/report_a_problem_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/features/report_a_problem_spec.rb -------------------------------------------------------------------------------- /spec/features/search_filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/features/search_filter_spec.rb -------------------------------------------------------------------------------- /spec/features/search_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/features/search_spec.rb -------------------------------------------------------------------------------- /spec/features/suggestion_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/features/suggestion_spec.rb -------------------------------------------------------------------------------- /spec/features/token_authentication_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/features/token_authentication_spec.rb -------------------------------------------------------------------------------- /spec/features/token_user_email_shared.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/features/token_user_email_shared.rb -------------------------------------------------------------------------------- /spec/fixtures/invalid_header.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/fixtures/invalid_header.csv -------------------------------------------------------------------------------- /spec/fixtures/invalid_header_with_optionals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/fixtures/invalid_header_with_optionals.csv -------------------------------------------------------------------------------- /spec/fixtures/invalid_rows.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/fixtures/invalid_rows.csv -------------------------------------------------------------------------------- /spec/fixtures/invalid_rows_with_optionals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/fixtures/invalid_rows_with_optionals.csv -------------------------------------------------------------------------------- /spec/fixtures/placeholder.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/fixtures/placeholder.bmp -------------------------------------------------------------------------------- /spec/fixtures/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/fixtures/placeholder.png -------------------------------------------------------------------------------- /spec/fixtures/profile_photo_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/fixtures/profile_photo_large.png -------------------------------------------------------------------------------- /spec/fixtures/profile_photo_too_small_dimensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/fixtures/profile_photo_too_small_dimensions.png -------------------------------------------------------------------------------- /spec/fixtures/profile_photo_valid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/fixtures/profile_photo_valid.png -------------------------------------------------------------------------------- /spec/fixtures/valid.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/fixtures/valid.csv -------------------------------------------------------------------------------- /spec/fixtures/valid_with_optionals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/fixtures/valid_with_optionals.csv -------------------------------------------------------------------------------- /spec/form_builders/person_form_builder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/form_builders/person_form_builder_spec.rb -------------------------------------------------------------------------------- /spec/form_builders/suggestion_form_builder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/form_builders/suggestion_form_builder_spec.rb -------------------------------------------------------------------------------- /spec/helpers/analytics_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/helpers/analytics_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/application_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/helpers/application_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/breadcrumb_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/helpers/breadcrumb_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/mail_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/helpers/mail_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/people_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/helpers/people_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/search_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/helpers/search_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/upload_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/helpers/upload_helper_spec.rb -------------------------------------------------------------------------------- /spec/jobs/generate_report_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/jobs/generate_report_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/notification_sender_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/jobs/notification_sender_spec.rb -------------------------------------------------------------------------------- /spec/jobs/person_import_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/jobs/person_import_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/update_group_members_completion_score_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/jobs/update_group_members_completion_score_job_spec.rb -------------------------------------------------------------------------------- /spec/lib/csv_publisher/user_behavior_report_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/lib/csv_publisher/user_behavior_report_spec.rb -------------------------------------------------------------------------------- /spec/lib/rails_host_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/lib/rails_host_spec.rb -------------------------------------------------------------------------------- /spec/lib/secure_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/lib/secure_spec.rb -------------------------------------------------------------------------------- /spec/mailers/group_update_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/mailers/group_update_mailer_spec.rb -------------------------------------------------------------------------------- /spec/mailers/previews/group_update_mailer_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/mailers/previews/group_update_mailer_preview.rb -------------------------------------------------------------------------------- /spec/mailers/previews/preview_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/mailers/previews/preview_helper.rb -------------------------------------------------------------------------------- /spec/mailers/previews/problem_report_mailer_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/mailers/previews/problem_report_mailer_preview.rb -------------------------------------------------------------------------------- /spec/mailers/previews/reminder_mailer_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/mailers/previews/reminder_mailer_preview.rb -------------------------------------------------------------------------------- /spec/mailers/previews/suggestion_mailer_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/mailers/previews/suggestion_mailer_preview.rb -------------------------------------------------------------------------------- /spec/mailers/previews/token_mailer_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/mailers/previews/token_mailer_preview.rb -------------------------------------------------------------------------------- /spec/mailers/previews/user_update_mailer_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/mailers/previews/user_update_mailer_preview.rb -------------------------------------------------------------------------------- /spec/mailers/problem_report_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/mailers/problem_report_mailer_spec.rb -------------------------------------------------------------------------------- /spec/mailers/reminder_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/mailers/reminder_mailer_spec.rb -------------------------------------------------------------------------------- /spec/mailers/suggestion_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/mailers/suggestion_mailer_spec.rb -------------------------------------------------------------------------------- /spec/mailers/token_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/mailers/token_mailer_spec.rb -------------------------------------------------------------------------------- /spec/mailers/user_update_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/mailers/user_update_mailer_spec.rb -------------------------------------------------------------------------------- /spec/models/concerns/bucketed_completion_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/models/concerns/bucketed_completion_spec.rb -------------------------------------------------------------------------------- /spec/models/concerns/completion_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/models/concerns/completion_spec.rb -------------------------------------------------------------------------------- /spec/models/concerns/concatenated_fields_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/models/concerns/concatenated_fields_spec.rb -------------------------------------------------------------------------------- /spec/models/concerns/placeholder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/models/concerns/placeholder_spec.rb -------------------------------------------------------------------------------- /spec/models/concerns/sanitizable_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/models/concerns/sanitizable_spec.rb -------------------------------------------------------------------------------- /spec/models/concerns/work_days_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/models/concerns/work_days_spec.rb -------------------------------------------------------------------------------- /spec/models/email_address_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/models/email_address_spec.rb -------------------------------------------------------------------------------- /spec/models/external_user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/models/external_user_spec.rb -------------------------------------------------------------------------------- /spec/models/group_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/models/group_spec.rb -------------------------------------------------------------------------------- /spec/models/health_check/database_configuration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/models/health_check/database_configuration_spec.rb -------------------------------------------------------------------------------- /spec/models/health_check/database_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/models/health_check/database_spec.rb -------------------------------------------------------------------------------- /spec/models/health_check/open_search_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/models/health_check/open_search_spec.rb -------------------------------------------------------------------------------- /spec/models/ip_address_matcher_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/models/ip_address_matcher_spec.rb -------------------------------------------------------------------------------- /spec/models/membership_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/models/membership_spec.rb -------------------------------------------------------------------------------- /spec/models/permitted_domain_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/models/permitted_domain_spec.rb -------------------------------------------------------------------------------- /spec/models/person_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/models/person_spec.rb -------------------------------------------------------------------------------- /spec/models/person_upload_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/models/person_upload_spec.rb -------------------------------------------------------------------------------- /spec/models/problem_report_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/models/problem_report_spec.rb -------------------------------------------------------------------------------- /spec/models/profile_photo_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/models/profile_photo_spec.rb -------------------------------------------------------------------------------- /spec/models/queued_notification_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/models/queued_notification_spec.rb -------------------------------------------------------------------------------- /spec/models/readonly_user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/models/readonly_user_spec.rb -------------------------------------------------------------------------------- /spec/models/report_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/models/report_spec.rb -------------------------------------------------------------------------------- /spec/models/suggestion_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/models/suggestion_spec.rb -------------------------------------------------------------------------------- /spec/models/token_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/models/token_spec.rb -------------------------------------------------------------------------------- /spec/models/version_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/models/version_spec.rb -------------------------------------------------------------------------------- /spec/policies/admin/management_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/policies/admin/management_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/admin/person_upload_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/policies/admin/person_upload_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/group_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/policies/group_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/person_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/policies/person_policy_spec.rb -------------------------------------------------------------------------------- /spec/presenters/audit_version_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/presenters/audit_version_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/membership_changes_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/presenters/membership_changes_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/person_changes_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/presenters/person_changes_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/profile_changes_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/presenters/profile_changes_presenter_spec.rb -------------------------------------------------------------------------------- /spec/queries/distinct_membership_query_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/queries/distinct_membership_query_spec.rb -------------------------------------------------------------------------------- /spec/queries/namesakes_query_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/queries/namesakes_query_spec.rb -------------------------------------------------------------------------------- /spec/queries/people_in_groups_query_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/queries/people_in_groups_query_spec.rb -------------------------------------------------------------------------------- /spec/queries/user_behavior_query_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/queries/user_behavior_query_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/services/deployment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/services/deployment_spec.rb -------------------------------------------------------------------------------- /spec/services/email_extractor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/services/email_extractor_spec.rb -------------------------------------------------------------------------------- /spec/services/group_lister_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/services/group_lister_spec.rb -------------------------------------------------------------------------------- /spec/services/group_search_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/services/group_search_spec.rb -------------------------------------------------------------------------------- /spec/services/group_update_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/services/group_update_service_spec.rb -------------------------------------------------------------------------------- /spec/services/login_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/services/login_spec.rb -------------------------------------------------------------------------------- /spec/services/never_logged_in_notifier_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/services/never_logged_in_notifier_spec.rb -------------------------------------------------------------------------------- /spec/services/person_creator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/services/person_creator_spec.rb -------------------------------------------------------------------------------- /spec/services/person_csv_importer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/services/person_csv_importer_spec.rb -------------------------------------------------------------------------------- /spec/services/person_csv_parser_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/services/person_csv_parser_spec.rb -------------------------------------------------------------------------------- /spec/services/person_destroyer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/services/person_destroyer_spec.rb -------------------------------------------------------------------------------- /spec/services/person_search_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/services/person_search_spec.rb -------------------------------------------------------------------------------- /spec/services/person_update_notifier_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/services/person_update_notifier_spec.rb -------------------------------------------------------------------------------- /spec/services/person_updater_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/services/person_updater_spec.rb -------------------------------------------------------------------------------- /spec/services/profile_change_aggregator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/services/profile_change_aggregator_spec.rb -------------------------------------------------------------------------------- /spec/services/random_generator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/services/random_generator_spec.rb -------------------------------------------------------------------------------- /spec/services/search_results_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/services/search_results_spec.rb -------------------------------------------------------------------------------- /spec/services/shared_examples_for_notifiers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/services/shared_examples_for_notifiers.rb -------------------------------------------------------------------------------- /spec/services/shared_examples_for_search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/services/shared_examples_for_search.rb -------------------------------------------------------------------------------- /spec/services/state_manager_cookie_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/services/state_manager_cookie_spec.rb -------------------------------------------------------------------------------- /spec/services/suggestion_delivery_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/services/suggestion_delivery_spec.rb -------------------------------------------------------------------------------- /spec/services/team_description_notifier_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/services/team_description_notifier_spec.rb -------------------------------------------------------------------------------- /spec/services/token_login_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/services/token_login_spec.rb -------------------------------------------------------------------------------- /spec/services/token_sender_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/services/token_sender_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/active_job_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/active_job_helper.rb -------------------------------------------------------------------------------- /spec/support/app_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/app_config.rb -------------------------------------------------------------------------------- /spec/support/carrierwave.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/carrierwave.rb -------------------------------------------------------------------------------- /spec/support/db_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/db_helper.rb -------------------------------------------------------------------------------- /spec/support/email.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/email.rb -------------------------------------------------------------------------------- /spec/support/feature_flag_spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/feature_flag_spec_helper.rb -------------------------------------------------------------------------------- /spec/support/feature_flags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/feature_flags.rb -------------------------------------------------------------------------------- /spec/support/login.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/login.rb -------------------------------------------------------------------------------- /spec/support/matchers/delayed_job_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/matchers/delayed_job_matchers.rb -------------------------------------------------------------------------------- /spec/support/matchers/file_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/matchers/file_matchers.rb -------------------------------------------------------------------------------- /spec/support/matchers/general_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/matchers/general_matchers.rb -------------------------------------------------------------------------------- /spec/support/matchers/json_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/matchers/json_matchers.rb -------------------------------------------------------------------------------- /spec/support/matchers/page_element_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/matchers/page_element_matchers.rb -------------------------------------------------------------------------------- /spec/support/matchers/pundit_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/matchers/pundit_matcher.rb -------------------------------------------------------------------------------- /spec/support/matchers/sql_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/matchers/sql_matchers.rb -------------------------------------------------------------------------------- /spec/support/matchers/whenever_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/matchers/whenever_matchers.rb -------------------------------------------------------------------------------- /spec/support/open_search_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/open_search_helper.rb -------------------------------------------------------------------------------- /spec/support/org_browser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/org_browser.rb -------------------------------------------------------------------------------- /spec/support/pages/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/pages/base.rb -------------------------------------------------------------------------------- /spec/support/pages/edit_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/pages/edit_group.rb -------------------------------------------------------------------------------- /spec/support/pages/edit_profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/pages/edit_profile.rb -------------------------------------------------------------------------------- /spec/support/pages/group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/pages/group.rb -------------------------------------------------------------------------------- /spec/support/pages/home.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/pages/home.rb -------------------------------------------------------------------------------- /spec/support/pages/login.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/pages/login.rb -------------------------------------------------------------------------------- /spec/support/pages/management.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/pages/management.rb -------------------------------------------------------------------------------- /spec/support/pages/new_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/pages/new_group.rb -------------------------------------------------------------------------------- /spec/support/pages/new_profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/pages/new_profile.rb -------------------------------------------------------------------------------- /spec/support/pages/person_confirm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/pages/person_confirm.rb -------------------------------------------------------------------------------- /spec/support/pages/person_email_confirm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/pages/person_email_confirm.rb -------------------------------------------------------------------------------- /spec/support/pages/profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/pages/profile.rb -------------------------------------------------------------------------------- /spec/support/pages/search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/pages/search.rb -------------------------------------------------------------------------------- /spec/support/pages/sections/about_usage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/pages/sections/about_usage.rb -------------------------------------------------------------------------------- /spec/support/pages/sections/audit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/pages/sections/audit.rb -------------------------------------------------------------------------------- /spec/support/pages/sections/department_overview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/pages/sections/department_overview.rb -------------------------------------------------------------------------------- /spec/support/pages/sections/error_summary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/pages/sections/error_summary.rb -------------------------------------------------------------------------------- /spec/support/pages/sections/group_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/pages/sections/group_form.rb -------------------------------------------------------------------------------- /spec/support/pages/sections/membership_panel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/pages/sections/membership_panel.rb -------------------------------------------------------------------------------- /spec/support/pages/sections/person_confirm_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/pages/sections/person_confirm_form.rb -------------------------------------------------------------------------------- /spec/support/pages/sections/person_confirm_search_results.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/pages/sections/person_confirm_search_results.rb -------------------------------------------------------------------------------- /spec/support/pages/sections/person_email_confirm_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/pages/sections/person_email_confirm_form.rb -------------------------------------------------------------------------------- /spec/support/pages/sections/profile_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/pages/sections/profile_form.rb -------------------------------------------------------------------------------- /spec/support/pages/sections/search_filters_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/pages/sections/search_filters_form.rb -------------------------------------------------------------------------------- /spec/support/pages/sections/search_footer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/pages/sections/search_footer.rb -------------------------------------------------------------------------------- /spec/support/pages/sections/search_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/pages/sections/search_form.rb -------------------------------------------------------------------------------- /spec/support/pages/sections/search_results.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/pages/sections/search_results.rb -------------------------------------------------------------------------------- /spec/support/pages/token_created.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/pages/token_created.rb -------------------------------------------------------------------------------- /spec/support/permitted_domain_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/permitted_domain_helper.rb -------------------------------------------------------------------------------- /spec/support/profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/profile.rb -------------------------------------------------------------------------------- /spec/support/search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/search.rb -------------------------------------------------------------------------------- /spec/support/shared_examples_for_changes_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/shared_examples_for_changes_presenter.rb -------------------------------------------------------------------------------- /spec/support/shoulda_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/support/shoulda_matchers.rb -------------------------------------------------------------------------------- /spec/uploaders/image_uploader_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/uploaders/image_uploader_spec.rb -------------------------------------------------------------------------------- /spec/validators/email_validator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/validators/email_validator_spec.rb -------------------------------------------------------------------------------- /spec/validators/file_size_validator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/validators/file_size_validator_spec.rb -------------------------------------------------------------------------------- /spec/validators/image_dimensions_validator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/validators/image_dimensions_validator_spec.rb -------------------------------------------------------------------------------- /spec/views/search/_person.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/spec/views/search/_person.html.haml_spec.rb -------------------------------------------------------------------------------- /tmp/parallel_runtime_rspec.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/tmp/parallel_runtime_rspec.log -------------------------------------------------------------------------------- /vendor/assets/components/Jcrop/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/components/Jcrop/.bower.json -------------------------------------------------------------------------------- /vendor/assets/components/Jcrop/MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/components/Jcrop/MIT-LICENSE.txt -------------------------------------------------------------------------------- /vendor/assets/components/Jcrop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/components/Jcrop/README.md -------------------------------------------------------------------------------- /vendor/assets/components/Jcrop/css/Jcrop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/components/Jcrop/css/Jcrop.gif -------------------------------------------------------------------------------- /vendor/assets/components/Jcrop/css/jquery.Jcrop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/components/Jcrop/css/jquery.Jcrop.css -------------------------------------------------------------------------------- /vendor/assets/components/Jcrop/css/jquery.Jcrop.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/components/Jcrop/css/jquery.Jcrop.min.css -------------------------------------------------------------------------------- /vendor/assets/components/Jcrop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/components/Jcrop/index.html -------------------------------------------------------------------------------- /vendor/assets/components/Jcrop/js/jquery.Jcrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/components/Jcrop/js/jquery.Jcrop.js -------------------------------------------------------------------------------- /vendor/assets/components/Jcrop/js/jquery.Jcrop.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/components/Jcrop/js/jquery.Jcrop.min.js -------------------------------------------------------------------------------- /vendor/assets/components/Jcrop/js/jquery.color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/components/Jcrop/js/jquery.color.js -------------------------------------------------------------------------------- /vendor/assets/components/Jcrop/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/components/Jcrop/js/jquery.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/bind.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/lodash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/lodash.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/moj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/moj.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/az.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/bg.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/ca.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/cs.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/da.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/de.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/en.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/es.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/et.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/eu.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/fa.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/fi.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/fr.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/gl.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/hi.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/hr.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/hu.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/id.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/is.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/it.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/ko.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/lt.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/lv.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/mk.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/nb.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/nl.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/pl.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/pt-BR.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/pt.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/ro.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/ru.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/sk.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/sr.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/sv.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/th.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/tr.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/uk.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/vi.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/zh-CN.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/i18n/zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/i18n/zh-TW.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/select2.full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/select2.full.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/select2.full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/select2.full.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/select2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/select2.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/javascripts/select2/select2.min.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/select2/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/stylesheets/select2/select2.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/select2/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/peoplefinder/HEAD/vendor/assets/stylesheets/select2/select2.min.css --------------------------------------------------------------------------------