├── .browserslistrc ├── .eslintrc.json ├── .github └── pull_request_template.md ├── .gitignore ├── .gitlab-ci-devenv.yml ├── .gitlab-ci-rules.yml ├── .gitlab-ci.yml ├── .gitlab ├── issue_templates │ ├── bug_template.md │ └── standard_template.md ├── merge_request_templates │ ├── bugMergeTemplate.md │ └── standardMergeTemplate.md └── secret-detection-ruleset.toml ├── .gitleaks.toml ├── .nvmrc ├── .rubocop.yml ├── .ruby-version ├── .scss-lint.yml ├── .snyk ├── .yardopts ├── CODEOWNERS ├── CONTRIBUTING.md ├── Capfile ├── Gemfile ├── Gemfile.lock ├── Makefile ├── Procfile ├── README.md ├── Rakefile ├── app ├── assets │ ├── builds │ │ └── .keep │ ├── images │ │ ├── LG-PP-Production.svg │ │ ├── LG-PP-Sandbox.svg │ │ ├── decorative-logo.png │ │ ├── gsa-logo.svg │ │ ├── gsa-logo_home.svg │ │ ├── icon-system-status.svg │ │ ├── logo.svg │ │ └── security-key.svg │ └── stylesheets │ │ ├── _step-indicator.scss │ │ ├── application.css.scss │ │ ├── footer.scss │ │ ├── home.scss │ │ ├── logo_banner.scss │ │ ├── service_config_wizard.scss │ │ └── text_to_clipboard.css.scss ├── components │ ├── radio_collection_component.html.erb │ ├── radio_collection_component.rb │ ├── wizard_fieldset_component.html.erb │ └── wizard_fieldset_component.rb ├── controllers │ ├── airtable_controller.rb │ ├── analytics │ │ └── service_providers_controller.rb │ ├── api │ │ ├── api_controller.rb │ │ ├── security_events_controller.rb │ │ └── service_providers_controller.rb │ ├── application_controller.rb │ ├── auth_tokens_controller.rb │ ├── authenticated_controller.rb │ ├── banners_controller.rb │ ├── docs_redirect_controller.rb │ ├── env_controller.rb │ ├── extracts_controller.rb │ ├── home_controller.rb │ ├── internal_reports_controller.rb │ ├── security_events_controller.rb │ ├── service_config_wizard_controller.rb │ ├── service_providers_controller.rb │ ├── teams │ │ └── users_controller.rb │ ├── teams_controller.rb │ ├── tools_controller.rb │ ├── unconfirmed_users_controller.rb │ ├── users │ │ ├── omniauth_controller.rb │ │ └── sessions_controller.rb │ └── users_controller.rb ├── forms │ └── security_event_form.rb ├── helpers │ ├── application_helper.rb │ ├── banner_helper.rb │ ├── footer_helper.rb │ ├── security_event_helper.rb │ ├── service_config_wizard_helper.rb │ ├── service_provider_helper.rb │ ├── team_helper.rb │ ├── tool_helper.rb │ └── user_helper.rb ├── inputs │ ├── usa_collection_select_input.rb │ └── usa_textarea_input.rb ├── javascript │ └── packs │ │ ├── anchor_accordion.js │ │ ├── application.js │ │ ├── production_request.js │ │ ├── service_provider_form.js │ │ ├── text_to_clipboard.js │ │ ├── validate_logo_size.js │ │ ├── wizard_redirects_form.js │ │ └── wizard_step_authentication_form.js ├── models │ ├── agency.rb │ ├── airtable.rb │ ├── application_record.rb │ ├── auth_token.rb │ ├── banner.rb │ ├── extract.rb │ ├── help_text.rb │ ├── role.rb │ ├── security_event.rb │ ├── service_provider.rb │ ├── service_provider_certificate.rb │ ├── team.rb │ ├── team_audit_event.rb │ ├── team_membership.rb │ ├── tools │ │ └── saml_request.rb │ ├── user.rb │ ├── validating_svg.rb │ ├── wizard_step.rb │ └── zendesk_request.rb ├── policies │ ├── airtable_policy.rb │ ├── analytics_policy.rb │ ├── auth_token_policy.rb │ ├── banner_policy.rb │ ├── base_policy.rb │ ├── extract_policy.rb │ ├── paper_trail │ │ └── version_policy.rb │ ├── security_event_policy.rb │ ├── service_config_policy.rb │ ├── service_provider_policy.rb │ ├── service_provider_updater_policy.rb │ ├── team_membership_policy.rb │ ├── team_policy.rb │ ├── tool_policy.rb │ ├── user_policy.rb │ └── wizard_step_policy.rb ├── serializers │ └── service_provider_serializer.rb ├── services │ ├── auth_token_auditor.rb │ ├── browser_cache.rb │ ├── delete_unconfirmed_users.rb │ ├── deploy_status_checker.rb │ ├── event_logger.rb │ ├── extract_archive.rb │ ├── idp_public_keys.rb │ ├── log_events.rb │ ├── make_admin.rb │ ├── model_changes.rb │ ├── populate_roles.rb │ ├── seeders │ │ ├── agency_seeder.rb │ │ ├── base_seeder.rb │ │ ├── roles.rb │ │ └── teams.rb │ ├── service_provider_archiver.rb │ ├── service_provider_importer.rb │ ├── service_provider_updater.rb │ ├── user_permissions_csv.rb │ └── user_session.rb ├── validators │ ├── attribute_bundle_validator.rb │ ├── certs_are_pems_validator.rb │ ├── logo_validator.rb │ ├── redirects_validator.rb │ ├── saml_certs_present_validator.rb │ └── user_validator.rb └── views │ ├── airtable │ └── index.html.erb │ ├── analytics │ └── service_providers │ │ └── show.html.erb │ ├── auth_tokens │ ├── _auth_token.html.erb │ ├── _form.html.erb │ ├── index.html.erb │ └── new.html.erb │ ├── banners │ ├── _banner.html.erb │ ├── _form.html.erb │ ├── _table.html.erb │ ├── _table_row.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ └── new.html.erb │ ├── components │ ├── _feature_card.html.erb │ ├── _logo_banner.html.erb │ ├── _multiple_text.html.erb │ ├── _radio_collection.html.erb │ ├── _step_progress.html.erb │ └── _version_history.html.erb │ ├── env │ └── index.html.erb │ ├── extracts │ ├── index.html.erb │ └── results.html.erb │ ├── home │ ├── authenticated │ │ └── index.html.erb │ ├── index.html.erb │ └── system_use.html.erb │ ├── layouts │ ├── _footer.html.erb │ ├── _footer_navigation.html.erb │ ├── _footer_signed_in.html.erb │ ├── _footer_signed_out.html.erb │ ├── _messages.html.erb │ ├── _nav.html.erb │ ├── application.html.erb │ └── service_config_wizard.html.erb │ ├── security_events │ ├── _table.html.erb │ ├── all.html.erb │ ├── index.html.erb │ └── show.html.erb │ ├── service_config_wizard │ ├── _checkbox_collection.html.erb │ ├── _fieldset.html.erb │ ├── _footer.html.erb │ ├── _help_text_custom.html.erb │ ├── _help_text_standard.html.erb │ ├── _redirects_oidc.html.erb │ ├── _redirects_saml.html.erb │ ├── authentication.html.erb │ ├── help_text.html.erb │ ├── intro.html.erb │ ├── issuer.html.erb │ ├── logo_and_cert.html.erb │ ├── protocol.html.erb │ ├── redirects.html.erb │ └── settings.html.erb │ ├── service_providers │ ├── _allow_prompt_login.html.erb │ ├── _certificate.html.erb │ ├── _certificate_expiration_td.html.erb │ ├── _deleted_service_provider_table_header.html.erb │ ├── _deleted_service_provider_table_row.html.erb │ ├── _email_nameid_format_allowed.html.erb │ ├── _form.html.erb │ ├── _form_custom_help_text.html.erb │ ├── _form_default_help_text.html.erb │ ├── _logo_upload.html.erb │ ├── _moved_to_prod_notice.html.erb │ ├── _prod_config_call_to_action.html.erb │ ├── _prod_promotion_request_form.html.erb │ ├── _service_provider_table.erb │ ├── _service_provider_table_header.erb │ ├── _service_provider_table_row.erb │ ├── _service_provider_yaml.erb │ ├── all.html.erb │ ├── deleted.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ └── show.html.erb │ ├── teams │ ├── _form.html.erb │ ├── _no_teams.html.erb │ ├── _teams_list.html.erb │ ├── _uuid_with_copy.html.erb │ ├── all.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ ├── show.html.erb │ └── users │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── remove_confirm.html.erb │ ├── tools │ ├── _form.html.erb │ └── saml_request.html.erb │ ├── user_mailer │ └── welcome_new_user.html.erb │ └── users │ ├── _form.html.erb │ ├── _form_rbac.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ └── none.html.erb ├── babel.config.js ├── bin ├── activate ├── bundle ├── puma ├── pumactl ├── rails ├── rake ├── setup ├── tag-release ├── update ├── yard └── yardoc ├── config.ru ├── config ├── agencies.yml ├── application.rb ├── application.yml.default ├── application.yml.default.docker ├── boot.rb ├── database.yml ├── database.yml.docker ├── deploy.rb ├── deploy │ ├── dev.rb │ ├── int.rb │ ├── qa.rb │ └── tf.rb ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── i18n-tasks.yml ├── initializers │ ├── active_storage.rb │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── devise.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── json_encoding.rb │ ├── mime_types.rb │ ├── new_framework_defaults_7_1.rb │ ├── omniauth.rb │ ├── permissions_policy.rb │ ├── rack_attack.rb │ ├── rack_mini_profiler.rb │ ├── rack_timeout.rb │ ├── redis.rb │ ├── secret_token.rb │ ├── secure_headers.rb │ ├── session_store.rb │ ├── simple_form.rb │ └── wrap_parameters.rb ├── locales │ ├── activerecord.en.yml │ ├── devise.en.yml │ ├── en.yml │ ├── service_providers │ │ ├── en.yml │ │ ├── es.yml │ │ ├── fr.yml │ │ └── zh.yml │ └── simple_form.en.yml ├── newrelic.yml ├── newrelic.yml.docker ├── oidc.yml ├── puma.rb ├── routes.rb ├── status_checks.yml └── storage.yml ├── db ├── migrate │ ├── 20160509195741_add_users_and_applications.rb │ ├── 20160509214815_create_delayed_jobs.rb │ ├── 20160509215026_add_devise_to_users.rb │ ├── 20160516150051_add_active_flag_to_applications.rb │ ├── 20160517142052_add_admin_user_flag.rb │ ├── 20160517142216_add_application_approved_flag.rb │ ├── 20160711194816_rename_applications.rb │ ├── 20160715161608_uui_dto_string.rb │ ├── 20170112194141_change_name_to_friendly_name.rb │ ├── 20170112195642_change_issuer_to_string.rb │ ├── 20170113162235_add_sp_attributes.rb │ ├── 20170117193214_add_agency_model.rb │ ├── 20170117193703_move_agency_name.rb │ ├── 20170117222117_add_attribute_bundle.rb │ ├── 20170209190458_add_redirect_uri_to_service_providers.rb │ ├── 20170301184735_create_organizations.rb │ ├── 20170302011548_organization_has_many_service_providers.rb │ ├── 20170303182534_rename_organizations_to_user_groups.rb │ ├── 20170307195917_user_group_has_many_users.rb │ ├── 20170330181317_add_logo_to_service_providers.rb │ ├── 20170509155224_add_auth_types_to_service_providers.rb │ ├── 20170522211709_change_user_group_to_groups.rb │ ├── 20170523193129_add_users_groups_table.rb │ ├── 20170531194154_add_multiple_redirect_uris.rb │ ├── 20170605175127_create_user_groups.rb │ ├── 20170615204004_drop_groups_user.rb │ ├── 20170623192352_move_users_to_new_groups.rb │ ├── 20171016184947_drop_redirect_uri_from_service_providers.rb │ ├── 20180302220332_remove_user_uuid_null_constraint.rb │ ├── 20180308224634_require_service_provider_friendly_name.rb │ ├── 20180308225011_remove_service_provider_agency_null_constraint.rb │ ├── 20180309002603_service_provider_active_by_default.rb │ ├── 20180309010908_allow_group_description_to_be_empty.rb │ ├── 20181224112751_add_production_issuer_to_service_providers.rb │ ├── 20190320210340_add_ial_to_service_providers.rb │ ├── 20190709200446_add_failure_to_proof_url_to_service_providers.rb │ ├── 20190725184319_add_agency_id_to_groups.rb │ ├── 20190805160021_add_push_notification_url_to_service_provider.rb │ ├── 20190924180727_add_help_text_to_service_providers.rb │ ├── 20200312022438_create_active_storage_tables.active_storage.rb │ ├── 20200522163534_create_versions.rb │ ├── 20200522215548_add_remote_logo_key_to_service_provider.rb │ ├── 20200609184921_add_deleted_at_to_users.rb │ ├── 20200611124017_remove_email_uuid_unique_indexes_from_users.rb │ ├── 20200611125630_add_email_uuid_where_deleted_at_indexes_to_users.rb │ ├── 20201130171218_add_allow_prompt_login_to_service_providers.rb │ ├── 20210122185518_add_default_aal_to_service_providers.rb │ ├── 20210226010923_add_service_name_to_active_storage_blobs.active_storage.rb │ ├── 20210226010924_create_active_storage_variant_records.active_storage.rb │ ├── 20210330163055_add_multiple_certs_to_service_providers.rb │ ├── 20210401171237_move_saml_client_cert_to_certs.rb │ ├── 20210401225415_remove_service_providers_saml_client_cert.rb │ ├── 20210412181322_create_security_events.rb │ ├── 20210614190137_add_email_name_id_format_to_service_providers.rb │ ├── 20210826155141_add_signed_response_message_request_to_service_provider.rb │ ├── 20210915155526_add_app_name_to_sp.rb │ ├── 20220111163753_add_prod_configto_sp_table.rb │ ├── 20231228170507_remove_not_null_on_active_storage_blobs_checksum.active_storage.rb │ ├── 20240521154232_create_banners.rb │ ├── 20240816205618_create_wizard_steps.rb │ ├── 20240918113849_remove_production_issuer_from_service_providers.rb │ ├── 20241007195845_rename_data_col_to_wizard_form_data.rb │ ├── 20241105222122_create_roles.rb │ ├── 20241106220055_add_role_to_user_teams.rb │ ├── 20241113135909_drop_roles.rb │ ├── 20241206175024_add_post_idv_follow_up_url_to_service_provider.rb │ ├── 20250128142743_create_roles_again.rb │ ├── 20250214203312_add_status_to_service_providers.rb │ ├── 20250224210230_remove_status_from_service_providers.rb │ ├── 20250225212140_create_auth_tokens.rb │ ├── 20250328162701_add_status_to_service_providers_again.rb │ ├── 20250618130346_rename_user_teams_to_team_memberships.rb │ ├── 20250924124408_add_uuid_to_groups.rb │ ├── 20251110141625_remove_friendly_name_from_role.rb │ └── 20251204083427_add_uuid_to_service_providers.rb ├── schema.rb └── seeds.rb ├── deploy └── build ├── devenv.lock ├── devenv.nix ├── devenv.yaml ├── dockerfiles ├── application.yaml ├── dashboard_ci.Dockerfile └── dashboard_review_app.Dockerfile ├── lib ├── assets │ └── .keep ├── events_documenter.rb ├── identity_config.rb ├── portal │ └── constants.rb └── tasks │ ├── .keep │ ├── check_certificates.rake │ ├── dev.rake │ ├── extracts.rake │ ├── logo_blobs.rake │ ├── populate_roles.rake │ └── users.rake ├── package.json ├── public ├── 401.html ├── 404.html ├── 413_logo.html ├── 422.html ├── 500.html ├── favicon.ico └── fonts │ ├── merriweather │ ├── Latin-Merriweather-Black.ttf │ ├── Latin-Merriweather-Black.woff │ ├── Latin-Merriweather-Black.woff2 │ ├── Latin-Merriweather-BlackItalic.ttf │ ├── Latin-Merriweather-BlackItalic.woff │ ├── Latin-Merriweather-BlackItalic.woff2 │ ├── Latin-Merriweather-Bold.ttf │ ├── Latin-Merriweather-Bold.woff │ ├── Latin-Merriweather-Bold.woff2 │ ├── Latin-Merriweather-BoldItalic.ttf │ ├── Latin-Merriweather-BoldItalic.woff │ ├── Latin-Merriweather-BoldItalic.woff2 │ ├── Latin-Merriweather-Italic.ttf │ ├── Latin-Merriweather-Italic.woff │ ├── Latin-Merriweather-Italic.woff2 │ ├── Latin-Merriweather-Light.ttf │ ├── Latin-Merriweather-Light.woff │ ├── Latin-Merriweather-Light.woff2 │ ├── Latin-Merriweather-LightItalic.ttf │ ├── Latin-Merriweather-LightItalic.woff │ ├── Latin-Merriweather-LightItalic.woff2 │ ├── Latin-Merriweather-Regular.ttf │ ├── Latin-Merriweather-Regular.woff │ └── Latin-Merriweather-Regular.woff2 │ ├── public-sans │ ├── PublicSans-Black.ttf │ ├── PublicSans-Black.woff │ ├── PublicSans-Black.woff2 │ ├── PublicSans-BlackItalic.ttf │ ├── PublicSans-BlackItalic.woff │ ├── PublicSans-BlackItalic.woff2 │ ├── PublicSans-Bold.ttf │ ├── PublicSans-Bold.woff │ ├── PublicSans-Bold.woff2 │ ├── PublicSans-BoldItalic.ttf │ ├── PublicSans-BoldItalic.woff │ ├── PublicSans-BoldItalic.woff2 │ ├── PublicSans-ExtraBold.ttf │ ├── PublicSans-ExtraBold.woff │ ├── PublicSans-ExtraBold.woff2 │ ├── PublicSans-ExtraBoldItalic.ttf │ ├── PublicSans-ExtraBoldItalic.woff │ ├── PublicSans-ExtraBoldItalic.woff2 │ ├── PublicSans-ExtraLight.ttf │ ├── PublicSans-ExtraLight.woff │ ├── PublicSans-ExtraLight.woff2 │ ├── PublicSans-ExtraLightItalic.ttf │ ├── PublicSans-ExtraLightItalic.woff │ ├── PublicSans-ExtraLightItalic.woff2 │ ├── PublicSans-Italic.ttf │ ├── PublicSans-Italic.woff │ ├── PublicSans-Italic.woff2 │ ├── PublicSans-Light.ttf │ ├── PublicSans-Light.woff │ ├── PublicSans-Light.woff2 │ ├── PublicSans-LightItalic.ttf │ ├── PublicSans-LightItalic.woff │ ├── PublicSans-LightItalic.woff2 │ ├── PublicSans-Medium.ttf │ ├── PublicSans-Medium.woff │ ├── PublicSans-Medium.woff2 │ ├── PublicSans-MediumItalic.ttf │ ├── PublicSans-MediumItalic.woff │ ├── PublicSans-MediumItalic.woff2 │ ├── PublicSans-Regular.ttf │ ├── PublicSans-Regular.woff │ ├── PublicSans-Regular.woff2 │ ├── PublicSans-SemiBold.ttf │ ├── PublicSans-SemiBold.woff │ ├── PublicSans-SemiBold.woff2 │ ├── PublicSans-SemiBoldItalic.ttf │ ├── PublicSans-SemiBoldItalic.woff │ ├── PublicSans-SemiBoldItalic.woff2 │ ├── PublicSans-Thin.ttf │ ├── PublicSans-Thin.woff │ ├── PublicSans-Thin.woff2 │ ├── PublicSans-ThinItalic.ttf │ ├── PublicSans-ThinItalic.woff │ └── PublicSans-ThinItalic.woff2 │ ├── roboto-mono │ ├── roboto-mono-v5-latin-100.ttf │ ├── roboto-mono-v5-latin-100.woff │ ├── roboto-mono-v5-latin-100.woff2 │ ├── roboto-mono-v5-latin-100italic.ttf │ ├── roboto-mono-v5-latin-100italic.woff │ ├── roboto-mono-v5-latin-100italic.woff2 │ ├── roboto-mono-v5-latin-300.ttf │ ├── roboto-mono-v5-latin-300.woff │ ├── roboto-mono-v5-latin-300.woff2 │ ├── roboto-mono-v5-latin-300italic.ttf │ ├── roboto-mono-v5-latin-300italic.woff │ ├── roboto-mono-v5-latin-300italic.woff2 │ ├── roboto-mono-v5-latin-500.ttf │ ├── roboto-mono-v5-latin-500.woff │ ├── roboto-mono-v5-latin-500.woff2 │ ├── roboto-mono-v5-latin-500italic.ttf │ ├── roboto-mono-v5-latin-500italic.woff │ ├── roboto-mono-v5-latin-500italic.woff2 │ ├── roboto-mono-v5-latin-700.ttf │ ├── roboto-mono-v5-latin-700.woff │ ├── roboto-mono-v5-latin-700.woff2 │ ├── roboto-mono-v5-latin-700italic.ttf │ ├── roboto-mono-v5-latin-700italic.woff │ ├── roboto-mono-v5-latin-700italic.woff2 │ ├── roboto-mono-v5-latin-italic.ttf │ ├── roboto-mono-v5-latin-italic.woff │ ├── roboto-mono-v5-latin-italic.woff2 │ ├── roboto-mono-v5-latin-regular.ttf │ ├── roboto-mono-v5-latin-regular.woff │ └── roboto-mono-v5-latin-regular.woff2 │ └── source-sans-pro │ ├── sourcesanspro-black-webfont.ttf │ ├── sourcesanspro-black-webfont.woff │ ├── sourcesanspro-black-webfont.woff2 │ ├── sourcesanspro-blackitalic-webfont.ttf │ ├── sourcesanspro-blackitalic-webfont.woff │ ├── sourcesanspro-blackitalic-webfont.woff2 │ ├── sourcesanspro-bold-webfont.ttf │ ├── sourcesanspro-bold-webfont.woff │ ├── sourcesanspro-bold-webfont.woff2 │ ├── sourcesanspro-bolditalic-webfont.ttf │ ├── sourcesanspro-bolditalic-webfont.woff │ ├── sourcesanspro-bolditalic-webfont.woff2 │ ├── sourcesanspro-extralight-webfont.ttf │ ├── sourcesanspro-extralight-webfont.woff │ ├── sourcesanspro-extralight-webfont.woff2 │ ├── sourcesanspro-extralightitalic-webfont.ttf │ ├── sourcesanspro-extralightitalic-webfont.woff │ ├── sourcesanspro-extralightitalic-webfont.woff2 │ ├── sourcesanspro-italic-webfont.ttf │ ├── sourcesanspro-italic-webfont.woff │ ├── sourcesanspro-italic-webfont.woff2 │ ├── sourcesanspro-light-webfont.ttf │ ├── sourcesanspro-light-webfont.woff │ ├── sourcesanspro-light-webfont.woff2 │ ├── sourcesanspro-lightitalic-webfont.ttf │ ├── sourcesanspro-lightitalic-webfont.woff │ ├── sourcesanspro-lightitalic-webfont.woff2 │ ├── sourcesanspro-regular-webfont.ttf │ ├── sourcesanspro-regular-webfont.woff │ ├── sourcesanspro-regular-webfont.woff2 │ ├── sourcesanspro-semibold-webfont.ttf │ ├── sourcesanspro-semibold-webfont.woff │ ├── sourcesanspro-semibold-webfont.woff2 │ ├── sourcesanspro-semibolditalic-webfont.ttf │ ├── sourcesanspro-semibolditalic-webfont.woff │ └── sourcesanspro-semibolditalic-webfont.woff2 ├── pull_request_template.md ├── spec ├── components │ ├── radio_collection_component_spec.rb │ └── wizard_fieldset_component_spec.rb ├── controllers │ ├── airtable_controller_spec.rb │ ├── api │ │ ├── api_controller_spec.rb │ │ ├── security_events_controller_spec.rb │ │ └── service_providers_controller_spec.rb │ ├── application_controller_spec.rb │ ├── banner_controller_spec.rb │ ├── docs_redirect_controller_spec.rb │ ├── env_controller_spec.rb │ ├── extracts_controller_spec.rb │ ├── home_controller_spec.rb │ ├── security_events_controller_spec.rb │ ├── service_config_wizard_controller_spec.rb │ ├── service_providers_controller_spec.rb │ ├── teams │ │ └── users_controller_spec.rb │ ├── teams_controller_spec.rb │ ├── tools_controller_spec.rb │ ├── users │ │ ├── omniauth_controller_spec.rb │ │ └── sessions_controller_spec.rb │ └── users_controller_spec.rb ├── cve_2015_9284_spec.rb ├── factories │ ├── agency.rb │ ├── auth_tokens.rb │ ├── banners.rb │ ├── extract.rb │ ├── roles.rb │ ├── security_event.rb │ ├── service_providers.rb │ ├── team.rb │ ├── team_memberships.rb │ ├── users.rb │ └── wizard_steps.rb ├── features │ ├── accessibility │ │ ├── env_spec.rb │ │ ├── home_spec.rb │ │ ├── security_events_spec.rb │ │ ├── service_config_wizard_spec.rb │ │ ├── service_providers_spec.rb │ │ ├── teams │ │ │ └── users_spec.rb │ │ ├── teams_spec.rb │ │ ├── tools_spec.rb │ │ └── users_spec.rb │ ├── auth_tokens_spec.rb │ ├── banners_spec.rb │ ├── env_spec.rb │ ├── external_link_redirect_spec.rb │ ├── extract_download_spec.rb │ ├── footer_spec.rb │ ├── home_spec.rb │ ├── internal_reports_spec.rb │ ├── logo_upload_spec.rb │ ├── nav_links_spec.rb │ ├── service_config_wizard_spec.rb │ ├── service_providers_index_spec.rb │ ├── service_providers_spec.rb │ ├── teams │ │ └── users_spec.rb │ ├── teams_spec.rb │ └── users_spec.rb ├── fixtures │ ├── big-logo.png │ ├── files │ │ ├── extract_sample.json │ │ ├── extract_sample_no_team.json │ │ ├── extract_with_missing_images.tgz │ │ ├── issuers.txt │ │ ├── logo.png │ │ ├── logo.svg │ │ ├── roles.yml │ │ └── testcert.pem │ ├── invalid.txt │ ├── logo_with_script.svg │ ├── logo_without_size.svg │ └── simple_extract.tgz ├── forms │ └── security_event_form_spec.rb ├── helpers │ ├── application_helper_spec.rb │ ├── banner_helper_spec.rb │ ├── footer_helper_spec.rb │ ├── security_event_helper_spec.rb │ ├── service_provider_helper_spec.rb │ ├── team_helper_spec.rb │ ├── tool_helper_spec.rb │ └── user_helper_spec.rb ├── i18n_spec.rb ├── lib │ └── events_documenter_spec.rb ├── models │ ├── airtable_spec.rb │ ├── auth_token_spec.rb │ ├── banner_spec.rb │ ├── extract_spec.rb │ ├── help_text_spec.rb │ ├── role_spec.rb │ ├── saml_request_spec.rb │ ├── security_event_spec.rb │ ├── service_provider_certificate_spec.rb │ ├── service_provider_spec.rb │ ├── team_audit_event_spec.rb │ ├── team_membership_spec.rb │ ├── team_spec.rb │ ├── user_spec.rb │ ├── wizard_step_spec.rb │ └── zendesk_request_spec.rb ├── policies │ ├── analytics_policy_spec.rb │ ├── banner_policy_spec.rb │ ├── base_policy_spec.rb │ ├── extract_policy_spec.rb │ ├── paper_trail │ │ └── version_policy_spec.rb │ ├── security_event_policy_spec.rb │ ├── service_config_policy_spec.rb │ ├── service_provider_policy_spec.rb │ ├── service_provider_updater_policy_spec.rb │ ├── team_membership_policy_spec.rb │ ├── team_policy_spec.rb │ ├── tool_policy_spec.rb │ ├── user_policy_spec.rb │ └── wizard_step_policy_spec.rb ├── rails_helper.rb ├── requests │ ├── preserved_urls_spec.rb │ ├── rack_attack_spec.rb │ ├── service_provider_api_spec.rb │ └── service_providers_spec.rb ├── routing │ └── security_events_spec.rb ├── serializers │ └── service_provider_serializer_spec.rb ├── services │ ├── auth_token_auditor_spec.rb │ ├── delete_unconfirmed_users_spec.rb │ ├── deploy_status_checker_spec.rb │ ├── event_logger_spec.rb │ ├── extract_archive_spec.rb │ ├── idp_public_keys_spec.rb │ ├── make_admin_spec.rb │ ├── model_changes_spec.rb │ ├── populate_roles_spec.rb │ ├── seeders │ │ ├── agency_seeder_spec.rb │ │ ├── base_seeder_spec.rb │ │ ├── roles_spec.rb │ │ └── teams_spec.rb │ ├── service_provider_archiver_spec.rb │ ├── service_provider_importer_spec.rb │ ├── service_provider_updater_spec.rb │ ├── user_permissions_csv_spec.rb │ └── user_session_spec.rb ├── spec_helper.rb ├── support │ ├── action_mailer.rb │ ├── capybara.rb │ ├── controller_helper.rb │ ├── deploy_status_checker_helper.rb │ ├── factory_bot.rb │ ├── fake_request.rb │ ├── fake_saml_idp.rb │ ├── features │ │ └── .keep │ ├── i18n.rb │ ├── matchers │ │ ├── .keep │ │ └── accessibility.rb │ ├── migration_helpers.rb │ ├── mixins │ │ └── .keep │ ├── shared_examples │ │ └── .keep │ ├── shoulda_matchers.rb │ └── x509_helpers.rb ├── validators │ ├── attribute_bundle_validator_spec.rb │ └── certs_are_pems_validator_spec.rb └── views │ ├── security_events │ └── _table.html.erb_spec.rb │ └── service_providers │ ├── _certificate.html.erb_spec.rb │ └── _certificate_expiration_td.html.erb_spec.rb └── webpack.config.js /.browserslistrc: -------------------------------------------------------------------------------- 1 | defaults 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci-devenv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/.gitlab-ci-devenv.yml -------------------------------------------------------------------------------- /.gitlab-ci-rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/.gitlab-ci-rules.yml -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab/issue_templates/bug_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/.gitlab/issue_templates/bug_template.md -------------------------------------------------------------------------------- /.gitlab/issue_templates/standard_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/.gitlab/issue_templates/standard_template.md -------------------------------------------------------------------------------- /.gitlab/merge_request_templates/bugMergeTemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/.gitlab/merge_request_templates/bugMergeTemplate.md -------------------------------------------------------------------------------- /.gitlab/merge_request_templates/standardMergeTemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/.gitlab/merge_request_templates/standardMergeTemplate.md -------------------------------------------------------------------------------- /.gitlab/secret-detection-ruleset.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/.gitlab/secret-detection-ruleset.toml -------------------------------------------------------------------------------- /.gitleaks.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/.gitleaks.toml -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.4.5 2 | -------------------------------------------------------------------------------- /.scss-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/.scss-lint.yml -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/.snyk -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/.yardopts -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Capfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/Capfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/Makefile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/builds/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/LG-PP-Production.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/assets/images/LG-PP-Production.svg -------------------------------------------------------------------------------- /app/assets/images/LG-PP-Sandbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/assets/images/LG-PP-Sandbox.svg -------------------------------------------------------------------------------- /app/assets/images/decorative-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/assets/images/decorative-logo.png -------------------------------------------------------------------------------- /app/assets/images/gsa-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/assets/images/gsa-logo.svg -------------------------------------------------------------------------------- /app/assets/images/gsa-logo_home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/assets/images/gsa-logo_home.svg -------------------------------------------------------------------------------- /app/assets/images/icon-system-status.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/assets/images/icon-system-status.svg -------------------------------------------------------------------------------- /app/assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/assets/images/logo.svg -------------------------------------------------------------------------------- /app/assets/images/security-key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/assets/images/security-key.svg -------------------------------------------------------------------------------- /app/assets/stylesheets/_step-indicator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/assets/stylesheets/_step-indicator.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/assets/stylesheets/application.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/assets/stylesheets/footer.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/assets/stylesheets/home.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/logo_banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/assets/stylesheets/logo_banner.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/service_config_wizard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/assets/stylesheets/service_config_wizard.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/text_to_clipboard.css.scss: -------------------------------------------------------------------------------- 1 | .clipboard-message { 2 | transition: opacity .15s ease-in-out; 3 | } 4 | -------------------------------------------------------------------------------- /app/components/radio_collection_component.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/components/radio_collection_component.html.erb -------------------------------------------------------------------------------- /app/components/radio_collection_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/components/radio_collection_component.rb -------------------------------------------------------------------------------- /app/components/wizard_fieldset_component.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/components/wizard_fieldset_component.html.erb -------------------------------------------------------------------------------- /app/components/wizard_fieldset_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/components/wizard_fieldset_component.rb -------------------------------------------------------------------------------- /app/controllers/airtable_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/controllers/airtable_controller.rb -------------------------------------------------------------------------------- /app/controllers/analytics/service_providers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/controllers/analytics/service_providers_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/api_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/controllers/api/api_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/security_events_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/controllers/api/security_events_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/service_providers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/controllers/api/service_providers_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/auth_tokens_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/controllers/auth_tokens_controller.rb -------------------------------------------------------------------------------- /app/controllers/authenticated_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/controllers/authenticated_controller.rb -------------------------------------------------------------------------------- /app/controllers/banners_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/controllers/banners_controller.rb -------------------------------------------------------------------------------- /app/controllers/docs_redirect_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/controllers/docs_redirect_controller.rb -------------------------------------------------------------------------------- /app/controllers/env_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/controllers/env_controller.rb -------------------------------------------------------------------------------- /app/controllers/extracts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/controllers/extracts_controller.rb -------------------------------------------------------------------------------- /app/controllers/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/controllers/home_controller.rb -------------------------------------------------------------------------------- /app/controllers/internal_reports_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/controllers/internal_reports_controller.rb -------------------------------------------------------------------------------- /app/controllers/security_events_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/controllers/security_events_controller.rb -------------------------------------------------------------------------------- /app/controllers/service_config_wizard_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/controllers/service_config_wizard_controller.rb -------------------------------------------------------------------------------- /app/controllers/service_providers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/controllers/service_providers_controller.rb -------------------------------------------------------------------------------- /app/controllers/teams/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/controllers/teams/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/teams_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/controllers/teams_controller.rb -------------------------------------------------------------------------------- /app/controllers/tools_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/controllers/tools_controller.rb -------------------------------------------------------------------------------- /app/controllers/unconfirmed_users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/controllers/unconfirmed_users_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/omniauth_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/controllers/users/omniauth_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/controllers/users/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/forms/security_event_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/forms/security_event_form.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/banner_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/helpers/banner_helper.rb -------------------------------------------------------------------------------- /app/helpers/footer_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/helpers/footer_helper.rb -------------------------------------------------------------------------------- /app/helpers/security_event_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/helpers/security_event_helper.rb -------------------------------------------------------------------------------- /app/helpers/service_config_wizard_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/helpers/service_config_wizard_helper.rb -------------------------------------------------------------------------------- /app/helpers/service_provider_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/helpers/service_provider_helper.rb -------------------------------------------------------------------------------- /app/helpers/team_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/helpers/team_helper.rb -------------------------------------------------------------------------------- /app/helpers/tool_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/helpers/tool_helper.rb -------------------------------------------------------------------------------- /app/helpers/user_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/helpers/user_helper.rb -------------------------------------------------------------------------------- /app/inputs/usa_collection_select_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/inputs/usa_collection_select_input.rb -------------------------------------------------------------------------------- /app/inputs/usa_textarea_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/inputs/usa_textarea_input.rb -------------------------------------------------------------------------------- /app/javascript/packs/anchor_accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/javascript/packs/anchor_accordion.js -------------------------------------------------------------------------------- /app/javascript/packs/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/javascript/packs/application.js -------------------------------------------------------------------------------- /app/javascript/packs/production_request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/javascript/packs/production_request.js -------------------------------------------------------------------------------- /app/javascript/packs/service_provider_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/javascript/packs/service_provider_form.js -------------------------------------------------------------------------------- /app/javascript/packs/text_to_clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/javascript/packs/text_to_clipboard.js -------------------------------------------------------------------------------- /app/javascript/packs/validate_logo_size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/javascript/packs/validate_logo_size.js -------------------------------------------------------------------------------- /app/javascript/packs/wizard_redirects_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/javascript/packs/wizard_redirects_form.js -------------------------------------------------------------------------------- /app/javascript/packs/wizard_step_authentication_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/javascript/packs/wizard_step_authentication_form.js -------------------------------------------------------------------------------- /app/models/agency.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/models/agency.rb -------------------------------------------------------------------------------- /app/models/airtable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/models/airtable.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/auth_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/models/auth_token.rb -------------------------------------------------------------------------------- /app/models/banner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/models/banner.rb -------------------------------------------------------------------------------- /app/models/extract.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/models/extract.rb -------------------------------------------------------------------------------- /app/models/help_text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/models/help_text.rb -------------------------------------------------------------------------------- /app/models/role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/models/role.rb -------------------------------------------------------------------------------- /app/models/security_event.rb: -------------------------------------------------------------------------------- 1 | class SecurityEvent < ApplicationRecord # :nodoc: 2 | belongs_to :user 3 | end 4 | -------------------------------------------------------------------------------- /app/models/service_provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/models/service_provider.rb -------------------------------------------------------------------------------- /app/models/service_provider_certificate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/models/service_provider_certificate.rb -------------------------------------------------------------------------------- /app/models/team.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/models/team.rb -------------------------------------------------------------------------------- /app/models/team_audit_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/models/team_audit_event.rb -------------------------------------------------------------------------------- /app/models/team_membership.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/models/team_membership.rb -------------------------------------------------------------------------------- /app/models/tools/saml_request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/models/tools/saml_request.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/validating_svg.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/models/validating_svg.rb -------------------------------------------------------------------------------- /app/models/wizard_step.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/models/wizard_step.rb -------------------------------------------------------------------------------- /app/models/zendesk_request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/models/zendesk_request.rb -------------------------------------------------------------------------------- /app/policies/airtable_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/policies/airtable_policy.rb -------------------------------------------------------------------------------- /app/policies/analytics_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/policies/analytics_policy.rb -------------------------------------------------------------------------------- /app/policies/auth_token_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/policies/auth_token_policy.rb -------------------------------------------------------------------------------- /app/policies/banner_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/policies/banner_policy.rb -------------------------------------------------------------------------------- /app/policies/base_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/policies/base_policy.rb -------------------------------------------------------------------------------- /app/policies/extract_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/policies/extract_policy.rb -------------------------------------------------------------------------------- /app/policies/paper_trail/version_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/policies/paper_trail/version_policy.rb -------------------------------------------------------------------------------- /app/policies/security_event_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/policies/security_event_policy.rb -------------------------------------------------------------------------------- /app/policies/service_config_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/policies/service_config_policy.rb -------------------------------------------------------------------------------- /app/policies/service_provider_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/policies/service_provider_policy.rb -------------------------------------------------------------------------------- /app/policies/service_provider_updater_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/policies/service_provider_updater_policy.rb -------------------------------------------------------------------------------- /app/policies/team_membership_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/policies/team_membership_policy.rb -------------------------------------------------------------------------------- /app/policies/team_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/policies/team_policy.rb -------------------------------------------------------------------------------- /app/policies/tool_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/policies/tool_policy.rb -------------------------------------------------------------------------------- /app/policies/user_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/policies/user_policy.rb -------------------------------------------------------------------------------- /app/policies/wizard_step_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/policies/wizard_step_policy.rb -------------------------------------------------------------------------------- /app/serializers/service_provider_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/serializers/service_provider_serializer.rb -------------------------------------------------------------------------------- /app/services/auth_token_auditor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/services/auth_token_auditor.rb -------------------------------------------------------------------------------- /app/services/browser_cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/services/browser_cache.rb -------------------------------------------------------------------------------- /app/services/delete_unconfirmed_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/services/delete_unconfirmed_users.rb -------------------------------------------------------------------------------- /app/services/deploy_status_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/services/deploy_status_checker.rb -------------------------------------------------------------------------------- /app/services/event_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/services/event_logger.rb -------------------------------------------------------------------------------- /app/services/extract_archive.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/services/extract_archive.rb -------------------------------------------------------------------------------- /app/services/idp_public_keys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/services/idp_public_keys.rb -------------------------------------------------------------------------------- /app/services/log_events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/services/log_events.rb -------------------------------------------------------------------------------- /app/services/make_admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/services/make_admin.rb -------------------------------------------------------------------------------- /app/services/model_changes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/services/model_changes.rb -------------------------------------------------------------------------------- /app/services/populate_roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/services/populate_roles.rb -------------------------------------------------------------------------------- /app/services/seeders/agency_seeder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/services/seeders/agency_seeder.rb -------------------------------------------------------------------------------- /app/services/seeders/base_seeder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/services/seeders/base_seeder.rb -------------------------------------------------------------------------------- /app/services/seeders/roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/services/seeders/roles.rb -------------------------------------------------------------------------------- /app/services/seeders/teams.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/services/seeders/teams.rb -------------------------------------------------------------------------------- /app/services/service_provider_archiver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/services/service_provider_archiver.rb -------------------------------------------------------------------------------- /app/services/service_provider_importer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/services/service_provider_importer.rb -------------------------------------------------------------------------------- /app/services/service_provider_updater.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/services/service_provider_updater.rb -------------------------------------------------------------------------------- /app/services/user_permissions_csv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/services/user_permissions_csv.rb -------------------------------------------------------------------------------- /app/services/user_session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/services/user_session.rb -------------------------------------------------------------------------------- /app/validators/attribute_bundle_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/validators/attribute_bundle_validator.rb -------------------------------------------------------------------------------- /app/validators/certs_are_pems_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/validators/certs_are_pems_validator.rb -------------------------------------------------------------------------------- /app/validators/logo_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/validators/logo_validator.rb -------------------------------------------------------------------------------- /app/validators/redirects_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/validators/redirects_validator.rb -------------------------------------------------------------------------------- /app/validators/saml_certs_present_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/validators/saml_certs_present_validator.rb -------------------------------------------------------------------------------- /app/validators/user_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/validators/user_validator.rb -------------------------------------------------------------------------------- /app/views/airtable/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/airtable/index.html.erb -------------------------------------------------------------------------------- /app/views/analytics/service_providers/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/analytics/service_providers/show.html.erb -------------------------------------------------------------------------------- /app/views/auth_tokens/_auth_token.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/auth_tokens/_auth_token.html.erb -------------------------------------------------------------------------------- /app/views/auth_tokens/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/auth_tokens/_form.html.erb -------------------------------------------------------------------------------- /app/views/auth_tokens/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/auth_tokens/index.html.erb -------------------------------------------------------------------------------- /app/views/auth_tokens/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/auth_tokens/new.html.erb -------------------------------------------------------------------------------- /app/views/banners/_banner.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/banners/_banner.html.erb -------------------------------------------------------------------------------- /app/views/banners/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/banners/_form.html.erb -------------------------------------------------------------------------------- /app/views/banners/_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/banners/_table.html.erb -------------------------------------------------------------------------------- /app/views/banners/_table_row.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/banners/_table_row.html.erb -------------------------------------------------------------------------------- /app/views/banners/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/banners/edit.html.erb -------------------------------------------------------------------------------- /app/views/banners/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/banners/index.html.erb -------------------------------------------------------------------------------- /app/views/banners/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/banners/new.html.erb -------------------------------------------------------------------------------- /app/views/components/_feature_card.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/components/_feature_card.html.erb -------------------------------------------------------------------------------- /app/views/components/_logo_banner.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/components/_logo_banner.html.erb -------------------------------------------------------------------------------- /app/views/components/_multiple_text.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/components/_multiple_text.html.erb -------------------------------------------------------------------------------- /app/views/components/_radio_collection.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/components/_radio_collection.html.erb -------------------------------------------------------------------------------- /app/views/components/_step_progress.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/components/_step_progress.html.erb -------------------------------------------------------------------------------- /app/views/components/_version_history.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/components/_version_history.html.erb -------------------------------------------------------------------------------- /app/views/env/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/env/index.html.erb -------------------------------------------------------------------------------- /app/views/extracts/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/extracts/index.html.erb -------------------------------------------------------------------------------- /app/views/extracts/results.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/extracts/results.html.erb -------------------------------------------------------------------------------- /app/views/home/authenticated/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/home/authenticated/index.html.erb -------------------------------------------------------------------------------- /app/views/home/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/home/index.html.erb -------------------------------------------------------------------------------- /app/views/home/system_use.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/home/system_use.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/layouts/_footer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_footer_navigation.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/layouts/_footer_navigation.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_footer_signed_in.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/layouts/_footer_signed_in.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_footer_signed_out.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/layouts/_footer_signed_out.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_messages.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/layouts/_messages.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_nav.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/layouts/_nav.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/service_config_wizard.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/layouts/service_config_wizard.html.erb -------------------------------------------------------------------------------- /app/views/security_events/_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/security_events/_table.html.erb -------------------------------------------------------------------------------- /app/views/security_events/all.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/security_events/all.html.erb -------------------------------------------------------------------------------- /app/views/security_events/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/security_events/index.html.erb -------------------------------------------------------------------------------- /app/views/security_events/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/security_events/show.html.erb -------------------------------------------------------------------------------- /app/views/service_config_wizard/_checkbox_collection.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_config_wizard/_checkbox_collection.html.erb -------------------------------------------------------------------------------- /app/views/service_config_wizard/_fieldset.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_config_wizard/_fieldset.html.erb -------------------------------------------------------------------------------- /app/views/service_config_wizard/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_config_wizard/_footer.html.erb -------------------------------------------------------------------------------- /app/views/service_config_wizard/_help_text_custom.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_config_wizard/_help_text_custom.html.erb -------------------------------------------------------------------------------- /app/views/service_config_wizard/_help_text_standard.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_config_wizard/_help_text_standard.html.erb -------------------------------------------------------------------------------- /app/views/service_config_wizard/_redirects_oidc.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_config_wizard/_redirects_oidc.html.erb -------------------------------------------------------------------------------- /app/views/service_config_wizard/_redirects_saml.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_config_wizard/_redirects_saml.html.erb -------------------------------------------------------------------------------- /app/views/service_config_wizard/authentication.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_config_wizard/authentication.html.erb -------------------------------------------------------------------------------- /app/views/service_config_wizard/help_text.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_config_wizard/help_text.html.erb -------------------------------------------------------------------------------- /app/views/service_config_wizard/intro.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_config_wizard/intro.html.erb -------------------------------------------------------------------------------- /app/views/service_config_wizard/issuer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_config_wizard/issuer.html.erb -------------------------------------------------------------------------------- /app/views/service_config_wizard/logo_and_cert.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_config_wizard/logo_and_cert.html.erb -------------------------------------------------------------------------------- /app/views/service_config_wizard/protocol.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_config_wizard/protocol.html.erb -------------------------------------------------------------------------------- /app/views/service_config_wizard/redirects.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_config_wizard/redirects.html.erb -------------------------------------------------------------------------------- /app/views/service_config_wizard/settings.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_config_wizard/settings.html.erb -------------------------------------------------------------------------------- /app/views/service_providers/_allow_prompt_login.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_providers/_allow_prompt_login.html.erb -------------------------------------------------------------------------------- /app/views/service_providers/_certificate.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_providers/_certificate.html.erb -------------------------------------------------------------------------------- /app/views/service_providers/_certificate_expiration_td.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_providers/_certificate_expiration_td.html.erb -------------------------------------------------------------------------------- /app/views/service_providers/_deleted_service_provider_table_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_providers/_deleted_service_provider_table_header.html.erb -------------------------------------------------------------------------------- /app/views/service_providers/_deleted_service_provider_table_row.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_providers/_deleted_service_provider_table_row.html.erb -------------------------------------------------------------------------------- /app/views/service_providers/_email_nameid_format_allowed.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_providers/_email_nameid_format_allowed.html.erb -------------------------------------------------------------------------------- /app/views/service_providers/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_providers/_form.html.erb -------------------------------------------------------------------------------- /app/views/service_providers/_form_custom_help_text.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_providers/_form_custom_help_text.html.erb -------------------------------------------------------------------------------- /app/views/service_providers/_form_default_help_text.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_providers/_form_default_help_text.html.erb -------------------------------------------------------------------------------- /app/views/service_providers/_logo_upload.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_providers/_logo_upload.html.erb -------------------------------------------------------------------------------- /app/views/service_providers/_moved_to_prod_notice.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_providers/_moved_to_prod_notice.html.erb -------------------------------------------------------------------------------- /app/views/service_providers/_prod_config_call_to_action.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_providers/_prod_config_call_to_action.html.erb -------------------------------------------------------------------------------- /app/views/service_providers/_prod_promotion_request_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_providers/_prod_promotion_request_form.html.erb -------------------------------------------------------------------------------- /app/views/service_providers/_service_provider_table.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_providers/_service_provider_table.erb -------------------------------------------------------------------------------- /app/views/service_providers/_service_provider_table_header.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_providers/_service_provider_table_header.erb -------------------------------------------------------------------------------- /app/views/service_providers/_service_provider_table_row.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_providers/_service_provider_table_row.erb -------------------------------------------------------------------------------- /app/views/service_providers/_service_provider_yaml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_providers/_service_provider_yaml.erb -------------------------------------------------------------------------------- /app/views/service_providers/all.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_providers/all.html.erb -------------------------------------------------------------------------------- /app/views/service_providers/deleted.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_providers/deleted.html.erb -------------------------------------------------------------------------------- /app/views/service_providers/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_providers/edit.html.erb -------------------------------------------------------------------------------- /app/views/service_providers/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_providers/index.html.erb -------------------------------------------------------------------------------- /app/views/service_providers/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_providers/new.html.erb -------------------------------------------------------------------------------- /app/views/service_providers/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/service_providers/show.html.erb -------------------------------------------------------------------------------- /app/views/teams/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/teams/_form.html.erb -------------------------------------------------------------------------------- /app/views/teams/_no_teams.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/teams/_no_teams.html.erb -------------------------------------------------------------------------------- /app/views/teams/_teams_list.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/teams/_teams_list.html.erb -------------------------------------------------------------------------------- /app/views/teams/_uuid_with_copy.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/teams/_uuid_with_copy.html.erb -------------------------------------------------------------------------------- /app/views/teams/all.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/teams/all.html.erb -------------------------------------------------------------------------------- /app/views/teams/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/teams/edit.html.erb -------------------------------------------------------------------------------- /app/views/teams/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/teams/index.html.erb -------------------------------------------------------------------------------- /app/views/teams/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/teams/new.html.erb -------------------------------------------------------------------------------- /app/views/teams/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/teams/show.html.erb -------------------------------------------------------------------------------- /app/views/teams/users/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/teams/users/_form.html.erb -------------------------------------------------------------------------------- /app/views/teams/users/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/teams/users/edit.html.erb -------------------------------------------------------------------------------- /app/views/teams/users/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/teams/users/index.html.erb -------------------------------------------------------------------------------- /app/views/teams/users/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/teams/users/new.html.erb -------------------------------------------------------------------------------- /app/views/teams/users/remove_confirm.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/teams/users/remove_confirm.html.erb -------------------------------------------------------------------------------- /app/views/tools/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/tools/_form.html.erb -------------------------------------------------------------------------------- /app/views/tools/saml_request.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/tools/saml_request.html.erb -------------------------------------------------------------------------------- /app/views/user_mailer/welcome_new_user.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/user_mailer/welcome_new_user.html.erb -------------------------------------------------------------------------------- /app/views/users/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/users/_form.html.erb -------------------------------------------------------------------------------- /app/views/users/_form_rbac.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/users/_form_rbac.html.erb -------------------------------------------------------------------------------- /app/views/users/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/users/edit.html.erb -------------------------------------------------------------------------------- /app/views/users/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/users/index.html.erb -------------------------------------------------------------------------------- /app/views/users/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/users/new.html.erb -------------------------------------------------------------------------------- /app/views/users/none.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/app/views/users/none.html.erb -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/babel.config.js -------------------------------------------------------------------------------- /bin/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/bin/activate -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/puma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/bin/puma -------------------------------------------------------------------------------- /bin/pumactl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/bin/pumactl -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/tag-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/bin/tag-release -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/bin/update -------------------------------------------------------------------------------- /bin/yard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/bin/yard -------------------------------------------------------------------------------- /bin/yardoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/bin/yardoc -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config.ru -------------------------------------------------------------------------------- /config/agencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/agencies.yml -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/application.yml.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/application.yml.default -------------------------------------------------------------------------------- /config/application.yml.default.docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/application.yml.default.docker -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/database.yml.docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/database.yml.docker -------------------------------------------------------------------------------- /config/deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/deploy.rb -------------------------------------------------------------------------------- /config/deploy/dev.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/deploy/dev.rb -------------------------------------------------------------------------------- /config/deploy/int.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/deploy/int.rb -------------------------------------------------------------------------------- /config/deploy/qa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/deploy/qa.rb -------------------------------------------------------------------------------- /config/deploy/tf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/deploy/tf.rb -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/i18n-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/i18n-tasks.yml -------------------------------------------------------------------------------- /config/initializers/active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/initializers/active_storage.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/json_encoding.rb: -------------------------------------------------------------------------------- 1 | ActiveSupport::JSON::Encoding.time_precision = 0 2 | -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/new_framework_defaults_7_1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/initializers/new_framework_defaults_7_1.rb -------------------------------------------------------------------------------- /config/initializers/omniauth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/initializers/omniauth.rb -------------------------------------------------------------------------------- /config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /config/initializers/rack_attack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/initializers/rack_attack.rb -------------------------------------------------------------------------------- /config/initializers/rack_mini_profiler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/initializers/rack_mini_profiler.rb -------------------------------------------------------------------------------- /config/initializers/rack_timeout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/initializers/rack_timeout.rb -------------------------------------------------------------------------------- /config/initializers/redis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/initializers/redis.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/secure_headers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/initializers/secure_headers.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/simple_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/initializers/simple_form.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/activerecord.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/locales/activerecord.en.yml -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/service_providers/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/locales/service_providers/en.yml -------------------------------------------------------------------------------- /config/locales/service_providers/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/locales/service_providers/es.yml -------------------------------------------------------------------------------- /config/locales/service_providers/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/locales/service_providers/fr.yml -------------------------------------------------------------------------------- /config/locales/service_providers/zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/locales/service_providers/zh.yml -------------------------------------------------------------------------------- /config/locales/simple_form.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/locales/simple_form.en.yml -------------------------------------------------------------------------------- /config/newrelic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/newrelic.yml -------------------------------------------------------------------------------- /config/newrelic.yml.docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/newrelic.yml.docker -------------------------------------------------------------------------------- /config/oidc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/oidc.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/status_checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/status_checks.yml -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/config/storage.yml -------------------------------------------------------------------------------- /db/migrate/20160509195741_add_users_and_applications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20160509195741_add_users_and_applications.rb -------------------------------------------------------------------------------- /db/migrate/20160509214815_create_delayed_jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20160509214815_create_delayed_jobs.rb -------------------------------------------------------------------------------- /db/migrate/20160509215026_add_devise_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20160509215026_add_devise_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20160516150051_add_active_flag_to_applications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20160516150051_add_active_flag_to_applications.rb -------------------------------------------------------------------------------- /db/migrate/20160517142052_add_admin_user_flag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20160517142052_add_admin_user_flag.rb -------------------------------------------------------------------------------- /db/migrate/20160517142216_add_application_approved_flag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20160517142216_add_application_approved_flag.rb -------------------------------------------------------------------------------- /db/migrate/20160711194816_rename_applications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20160711194816_rename_applications.rb -------------------------------------------------------------------------------- /db/migrate/20160715161608_uui_dto_string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20160715161608_uui_dto_string.rb -------------------------------------------------------------------------------- /db/migrate/20170112194141_change_name_to_friendly_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20170112194141_change_name_to_friendly_name.rb -------------------------------------------------------------------------------- /db/migrate/20170112195642_change_issuer_to_string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20170112195642_change_issuer_to_string.rb -------------------------------------------------------------------------------- /db/migrate/20170113162235_add_sp_attributes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20170113162235_add_sp_attributes.rb -------------------------------------------------------------------------------- /db/migrate/20170117193214_add_agency_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20170117193214_add_agency_model.rb -------------------------------------------------------------------------------- /db/migrate/20170117193703_move_agency_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20170117193703_move_agency_name.rb -------------------------------------------------------------------------------- /db/migrate/20170117222117_add_attribute_bundle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20170117222117_add_attribute_bundle.rb -------------------------------------------------------------------------------- /db/migrate/20170209190458_add_redirect_uri_to_service_providers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20170209190458_add_redirect_uri_to_service_providers.rb -------------------------------------------------------------------------------- /db/migrate/20170301184735_create_organizations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20170301184735_create_organizations.rb -------------------------------------------------------------------------------- /db/migrate/20170302011548_organization_has_many_service_providers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20170302011548_organization_has_many_service_providers.rb -------------------------------------------------------------------------------- /db/migrate/20170303182534_rename_organizations_to_user_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20170303182534_rename_organizations_to_user_groups.rb -------------------------------------------------------------------------------- /db/migrate/20170307195917_user_group_has_many_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20170307195917_user_group_has_many_users.rb -------------------------------------------------------------------------------- /db/migrate/20170330181317_add_logo_to_service_providers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20170330181317_add_logo_to_service_providers.rb -------------------------------------------------------------------------------- /db/migrate/20170509155224_add_auth_types_to_service_providers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20170509155224_add_auth_types_to_service_providers.rb -------------------------------------------------------------------------------- /db/migrate/20170522211709_change_user_group_to_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20170522211709_change_user_group_to_groups.rb -------------------------------------------------------------------------------- /db/migrate/20170523193129_add_users_groups_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20170523193129_add_users_groups_table.rb -------------------------------------------------------------------------------- /db/migrate/20170531194154_add_multiple_redirect_uris.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20170531194154_add_multiple_redirect_uris.rb -------------------------------------------------------------------------------- /db/migrate/20170605175127_create_user_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20170605175127_create_user_groups.rb -------------------------------------------------------------------------------- /db/migrate/20170615204004_drop_groups_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20170615204004_drop_groups_user.rb -------------------------------------------------------------------------------- /db/migrate/20170623192352_move_users_to_new_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20170623192352_move_users_to_new_groups.rb -------------------------------------------------------------------------------- /db/migrate/20171016184947_drop_redirect_uri_from_service_providers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20171016184947_drop_redirect_uri_from_service_providers.rb -------------------------------------------------------------------------------- /db/migrate/20180302220332_remove_user_uuid_null_constraint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20180302220332_remove_user_uuid_null_constraint.rb -------------------------------------------------------------------------------- /db/migrate/20180308224634_require_service_provider_friendly_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20180308224634_require_service_provider_friendly_name.rb -------------------------------------------------------------------------------- /db/migrate/20180308225011_remove_service_provider_agency_null_constraint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20180308225011_remove_service_provider_agency_null_constraint.rb -------------------------------------------------------------------------------- /db/migrate/20180309002603_service_provider_active_by_default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20180309002603_service_provider_active_by_default.rb -------------------------------------------------------------------------------- /db/migrate/20180309010908_allow_group_description_to_be_empty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20180309010908_allow_group_description_to_be_empty.rb -------------------------------------------------------------------------------- /db/migrate/20181224112751_add_production_issuer_to_service_providers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20181224112751_add_production_issuer_to_service_providers.rb -------------------------------------------------------------------------------- /db/migrate/20190320210340_add_ial_to_service_providers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20190320210340_add_ial_to_service_providers.rb -------------------------------------------------------------------------------- /db/migrate/20190709200446_add_failure_to_proof_url_to_service_providers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20190709200446_add_failure_to_proof_url_to_service_providers.rb -------------------------------------------------------------------------------- /db/migrate/20190725184319_add_agency_id_to_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20190725184319_add_agency_id_to_groups.rb -------------------------------------------------------------------------------- /db/migrate/20190805160021_add_push_notification_url_to_service_provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20190805160021_add_push_notification_url_to_service_provider.rb -------------------------------------------------------------------------------- /db/migrate/20190924180727_add_help_text_to_service_providers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20190924180727_add_help_text_to_service_providers.rb -------------------------------------------------------------------------------- /db/migrate/20200312022438_create_active_storage_tables.active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20200312022438_create_active_storage_tables.active_storage.rb -------------------------------------------------------------------------------- /db/migrate/20200522163534_create_versions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20200522163534_create_versions.rb -------------------------------------------------------------------------------- /db/migrate/20200522215548_add_remote_logo_key_to_service_provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20200522215548_add_remote_logo_key_to_service_provider.rb -------------------------------------------------------------------------------- /db/migrate/20200609184921_add_deleted_at_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20200609184921_add_deleted_at_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20200611124017_remove_email_uuid_unique_indexes_from_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20200611124017_remove_email_uuid_unique_indexes_from_users.rb -------------------------------------------------------------------------------- /db/migrate/20200611125630_add_email_uuid_where_deleted_at_indexes_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20200611125630_add_email_uuid_where_deleted_at_indexes_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20201130171218_add_allow_prompt_login_to_service_providers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20201130171218_add_allow_prompt_login_to_service_providers.rb -------------------------------------------------------------------------------- /db/migrate/20210122185518_add_default_aal_to_service_providers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20210122185518_add_default_aal_to_service_providers.rb -------------------------------------------------------------------------------- /db/migrate/20210226010923_add_service_name_to_active_storage_blobs.active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20210226010923_add_service_name_to_active_storage_blobs.active_storage.rb -------------------------------------------------------------------------------- /db/migrate/20210226010924_create_active_storage_variant_records.active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20210226010924_create_active_storage_variant_records.active_storage.rb -------------------------------------------------------------------------------- /db/migrate/20210330163055_add_multiple_certs_to_service_providers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20210330163055_add_multiple_certs_to_service_providers.rb -------------------------------------------------------------------------------- /db/migrate/20210401171237_move_saml_client_cert_to_certs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20210401171237_move_saml_client_cert_to_certs.rb -------------------------------------------------------------------------------- /db/migrate/20210401225415_remove_service_providers_saml_client_cert.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20210401225415_remove_service_providers_saml_client_cert.rb -------------------------------------------------------------------------------- /db/migrate/20210412181322_create_security_events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20210412181322_create_security_events.rb -------------------------------------------------------------------------------- /db/migrate/20210614190137_add_email_name_id_format_to_service_providers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20210614190137_add_email_name_id_format_to_service_providers.rb -------------------------------------------------------------------------------- /db/migrate/20210826155141_add_signed_response_message_request_to_service_provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20210826155141_add_signed_response_message_request_to_service_provider.rb -------------------------------------------------------------------------------- /db/migrate/20210915155526_add_app_name_to_sp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20210915155526_add_app_name_to_sp.rb -------------------------------------------------------------------------------- /db/migrate/20220111163753_add_prod_configto_sp_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20220111163753_add_prod_configto_sp_table.rb -------------------------------------------------------------------------------- /db/migrate/20231228170507_remove_not_null_on_active_storage_blobs_checksum.active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20231228170507_remove_not_null_on_active_storage_blobs_checksum.active_storage.rb -------------------------------------------------------------------------------- /db/migrate/20240521154232_create_banners.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20240521154232_create_banners.rb -------------------------------------------------------------------------------- /db/migrate/20240816205618_create_wizard_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20240816205618_create_wizard_steps.rb -------------------------------------------------------------------------------- /db/migrate/20240918113849_remove_production_issuer_from_service_providers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20240918113849_remove_production_issuer_from_service_providers.rb -------------------------------------------------------------------------------- /db/migrate/20241007195845_rename_data_col_to_wizard_form_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20241007195845_rename_data_col_to_wizard_form_data.rb -------------------------------------------------------------------------------- /db/migrate/20241105222122_create_roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20241105222122_create_roles.rb -------------------------------------------------------------------------------- /db/migrate/20241106220055_add_role_to_user_teams.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20241106220055_add_role_to_user_teams.rb -------------------------------------------------------------------------------- /db/migrate/20241113135909_drop_roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20241113135909_drop_roles.rb -------------------------------------------------------------------------------- /db/migrate/20241206175024_add_post_idv_follow_up_url_to_service_provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20241206175024_add_post_idv_follow_up_url_to_service_provider.rb -------------------------------------------------------------------------------- /db/migrate/20250128142743_create_roles_again.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20250128142743_create_roles_again.rb -------------------------------------------------------------------------------- /db/migrate/20250214203312_add_status_to_service_providers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20250214203312_add_status_to_service_providers.rb -------------------------------------------------------------------------------- /db/migrate/20250224210230_remove_status_from_service_providers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20250224210230_remove_status_from_service_providers.rb -------------------------------------------------------------------------------- /db/migrate/20250225212140_create_auth_tokens.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20250225212140_create_auth_tokens.rb -------------------------------------------------------------------------------- /db/migrate/20250328162701_add_status_to_service_providers_again.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20250328162701_add_status_to_service_providers_again.rb -------------------------------------------------------------------------------- /db/migrate/20250618130346_rename_user_teams_to_team_memberships.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20250618130346_rename_user_teams_to_team_memberships.rb -------------------------------------------------------------------------------- /db/migrate/20250924124408_add_uuid_to_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20250924124408_add_uuid_to_groups.rb -------------------------------------------------------------------------------- /db/migrate/20251110141625_remove_friendly_name_from_role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20251110141625_remove_friendly_name_from_role.rb -------------------------------------------------------------------------------- /db/migrate/20251204083427_add_uuid_to_service_providers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/migrate/20251204083427_add_uuid_to_service_providers.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /deploy/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/deploy/build -------------------------------------------------------------------------------- /devenv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/devenv.lock -------------------------------------------------------------------------------- /devenv.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/devenv.nix -------------------------------------------------------------------------------- /devenv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/devenv.yaml -------------------------------------------------------------------------------- /dockerfiles/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/dockerfiles/application.yaml -------------------------------------------------------------------------------- /dockerfiles/dashboard_ci.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/dockerfiles/dashboard_ci.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/dashboard_review_app.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/dockerfiles/dashboard_review_app.Dockerfile -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/events_documenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/lib/events_documenter.rb -------------------------------------------------------------------------------- /lib/identity_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/lib/identity_config.rb -------------------------------------------------------------------------------- /lib/portal/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/lib/portal/constants.rb -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/check_certificates.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/lib/tasks/check_certificates.rake -------------------------------------------------------------------------------- /lib/tasks/dev.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/lib/tasks/dev.rake -------------------------------------------------------------------------------- /lib/tasks/extracts.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/lib/tasks/extracts.rake -------------------------------------------------------------------------------- /lib/tasks/logo_blobs.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/lib/tasks/logo_blobs.rake -------------------------------------------------------------------------------- /lib/tasks/populate_roles.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/lib/tasks/populate_roles.rake -------------------------------------------------------------------------------- /lib/tasks/users.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/lib/tasks/users.rake -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/package.json -------------------------------------------------------------------------------- /public/401.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/401.html -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/404.html -------------------------------------------------------------------------------- /public/413_logo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/413_logo.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/merriweather/Latin-Merriweather-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/merriweather/Latin-Merriweather-Black.ttf -------------------------------------------------------------------------------- /public/fonts/merriweather/Latin-Merriweather-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/merriweather/Latin-Merriweather-Black.woff -------------------------------------------------------------------------------- /public/fonts/merriweather/Latin-Merriweather-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/merriweather/Latin-Merriweather-Black.woff2 -------------------------------------------------------------------------------- /public/fonts/merriweather/Latin-Merriweather-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/merriweather/Latin-Merriweather-BlackItalic.ttf -------------------------------------------------------------------------------- /public/fonts/merriweather/Latin-Merriweather-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/merriweather/Latin-Merriweather-BlackItalic.woff -------------------------------------------------------------------------------- /public/fonts/merriweather/Latin-Merriweather-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/merriweather/Latin-Merriweather-BlackItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/merriweather/Latin-Merriweather-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/merriweather/Latin-Merriweather-Bold.ttf -------------------------------------------------------------------------------- /public/fonts/merriweather/Latin-Merriweather-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/merriweather/Latin-Merriweather-Bold.woff -------------------------------------------------------------------------------- /public/fonts/merriweather/Latin-Merriweather-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/merriweather/Latin-Merriweather-Bold.woff2 -------------------------------------------------------------------------------- /public/fonts/merriweather/Latin-Merriweather-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/merriweather/Latin-Merriweather-BoldItalic.ttf -------------------------------------------------------------------------------- /public/fonts/merriweather/Latin-Merriweather-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/merriweather/Latin-Merriweather-BoldItalic.woff -------------------------------------------------------------------------------- /public/fonts/merriweather/Latin-Merriweather-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/merriweather/Latin-Merriweather-BoldItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/merriweather/Latin-Merriweather-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/merriweather/Latin-Merriweather-Italic.ttf -------------------------------------------------------------------------------- /public/fonts/merriweather/Latin-Merriweather-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/merriweather/Latin-Merriweather-Italic.woff -------------------------------------------------------------------------------- /public/fonts/merriweather/Latin-Merriweather-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/merriweather/Latin-Merriweather-Italic.woff2 -------------------------------------------------------------------------------- /public/fonts/merriweather/Latin-Merriweather-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/merriweather/Latin-Merriweather-Light.ttf -------------------------------------------------------------------------------- /public/fonts/merriweather/Latin-Merriweather-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/merriweather/Latin-Merriweather-Light.woff -------------------------------------------------------------------------------- /public/fonts/merriweather/Latin-Merriweather-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/merriweather/Latin-Merriweather-Light.woff2 -------------------------------------------------------------------------------- /public/fonts/merriweather/Latin-Merriweather-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/merriweather/Latin-Merriweather-LightItalic.ttf -------------------------------------------------------------------------------- /public/fonts/merriweather/Latin-Merriweather-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/merriweather/Latin-Merriweather-LightItalic.woff -------------------------------------------------------------------------------- /public/fonts/merriweather/Latin-Merriweather-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/merriweather/Latin-Merriweather-LightItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/merriweather/Latin-Merriweather-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/merriweather/Latin-Merriweather-Regular.ttf -------------------------------------------------------------------------------- /public/fonts/merriweather/Latin-Merriweather-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/merriweather/Latin-Merriweather-Regular.woff -------------------------------------------------------------------------------- /public/fonts/merriweather/Latin-Merriweather-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/merriweather/Latin-Merriweather-Regular.woff2 -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-Black.ttf -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-Black.woff -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-Black.woff2 -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-BlackItalic.ttf -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-BlackItalic.woff -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-BlackItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-Bold.ttf -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-Bold.woff -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-Bold.woff2 -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-BoldItalic.ttf -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-BoldItalic.woff -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-BoldItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-ExtraBold.ttf -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-ExtraBold.woff -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-ExtraBold.woff2 -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-ExtraBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-ExtraBoldItalic.woff -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-ExtraBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-ExtraBoldItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-ExtraLight.ttf -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-ExtraLight.woff -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-ExtraLight.woff2 -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-ExtraLightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-ExtraLightItalic.woff -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-ExtraLightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-ExtraLightItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-Italic.ttf -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-Italic.woff -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-Italic.woff2 -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-Light.ttf -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-Light.woff -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-Light.woff2 -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-LightItalic.ttf -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-LightItalic.woff -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-LightItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-Medium.ttf -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-Medium.woff -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-Medium.woff2 -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-MediumItalic.ttf -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-MediumItalic.woff -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-MediumItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-Regular.ttf -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-Regular.woff -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-Regular.woff2 -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-SemiBold.ttf -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-SemiBold.woff -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-SemiBold.woff2 -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-SemiBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-SemiBoldItalic.woff -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-Thin.ttf -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-Thin.woff -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-Thin.woff2 -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-ThinItalic.ttf -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-ThinItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-ThinItalic.woff -------------------------------------------------------------------------------- /public/fonts/public-sans/PublicSans-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/public-sans/PublicSans-ThinItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto-mono/roboto-mono-v5-latin-100.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/roboto-mono/roboto-mono-v5-latin-100.ttf -------------------------------------------------------------------------------- /public/fonts/roboto-mono/roboto-mono-v5-latin-100.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/roboto-mono/roboto-mono-v5-latin-100.woff -------------------------------------------------------------------------------- /public/fonts/roboto-mono/roboto-mono-v5-latin-100.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/roboto-mono/roboto-mono-v5-latin-100.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto-mono/roboto-mono-v5-latin-100italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/roboto-mono/roboto-mono-v5-latin-100italic.ttf -------------------------------------------------------------------------------- /public/fonts/roboto-mono/roboto-mono-v5-latin-100italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/roboto-mono/roboto-mono-v5-latin-100italic.woff -------------------------------------------------------------------------------- /public/fonts/roboto-mono/roboto-mono-v5-latin-100italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/roboto-mono/roboto-mono-v5-latin-100italic.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto-mono/roboto-mono-v5-latin-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/roboto-mono/roboto-mono-v5-latin-300.ttf -------------------------------------------------------------------------------- /public/fonts/roboto-mono/roboto-mono-v5-latin-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/roboto-mono/roboto-mono-v5-latin-300.woff -------------------------------------------------------------------------------- /public/fonts/roboto-mono/roboto-mono-v5-latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/roboto-mono/roboto-mono-v5-latin-300.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto-mono/roboto-mono-v5-latin-300italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/roboto-mono/roboto-mono-v5-latin-300italic.ttf -------------------------------------------------------------------------------- /public/fonts/roboto-mono/roboto-mono-v5-latin-300italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/roboto-mono/roboto-mono-v5-latin-300italic.woff -------------------------------------------------------------------------------- /public/fonts/roboto-mono/roboto-mono-v5-latin-300italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/roboto-mono/roboto-mono-v5-latin-300italic.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto-mono/roboto-mono-v5-latin-500.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/roboto-mono/roboto-mono-v5-latin-500.ttf -------------------------------------------------------------------------------- /public/fonts/roboto-mono/roboto-mono-v5-latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/roboto-mono/roboto-mono-v5-latin-500.woff -------------------------------------------------------------------------------- /public/fonts/roboto-mono/roboto-mono-v5-latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/roboto-mono/roboto-mono-v5-latin-500.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto-mono/roboto-mono-v5-latin-500italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/roboto-mono/roboto-mono-v5-latin-500italic.ttf -------------------------------------------------------------------------------- /public/fonts/roboto-mono/roboto-mono-v5-latin-500italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/roboto-mono/roboto-mono-v5-latin-500italic.woff -------------------------------------------------------------------------------- /public/fonts/roboto-mono/roboto-mono-v5-latin-500italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/roboto-mono/roboto-mono-v5-latin-500italic.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto-mono/roboto-mono-v5-latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/roboto-mono/roboto-mono-v5-latin-700.ttf -------------------------------------------------------------------------------- /public/fonts/roboto-mono/roboto-mono-v5-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/roboto-mono/roboto-mono-v5-latin-700.woff -------------------------------------------------------------------------------- /public/fonts/roboto-mono/roboto-mono-v5-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/roboto-mono/roboto-mono-v5-latin-700.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto-mono/roboto-mono-v5-latin-700italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/roboto-mono/roboto-mono-v5-latin-700italic.ttf -------------------------------------------------------------------------------- /public/fonts/roboto-mono/roboto-mono-v5-latin-700italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/roboto-mono/roboto-mono-v5-latin-700italic.woff -------------------------------------------------------------------------------- /public/fonts/roboto-mono/roboto-mono-v5-latin-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/roboto-mono/roboto-mono-v5-latin-700italic.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto-mono/roboto-mono-v5-latin-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/roboto-mono/roboto-mono-v5-latin-italic.ttf -------------------------------------------------------------------------------- /public/fonts/roboto-mono/roboto-mono-v5-latin-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/roboto-mono/roboto-mono-v5-latin-italic.woff -------------------------------------------------------------------------------- /public/fonts/roboto-mono/roboto-mono-v5-latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/roboto-mono/roboto-mono-v5-latin-italic.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto-mono/roboto-mono-v5-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/roboto-mono/roboto-mono-v5-latin-regular.ttf -------------------------------------------------------------------------------- /public/fonts/roboto-mono/roboto-mono-v5-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/roboto-mono/roboto-mono-v5-latin-regular.woff -------------------------------------------------------------------------------- /public/fonts/roboto-mono/roboto-mono-v5-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/roboto-mono/roboto-mono-v5-latin-regular.woff2 -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-black-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-black-webfont.ttf -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-black-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-black-webfont.woff -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-black-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-black-webfont.woff2 -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-blackitalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-blackitalic-webfont.ttf -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-blackitalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-blackitalic-webfont.woff -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-blackitalic-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-blackitalic-webfont.woff2 -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-bold-webfont.ttf -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-bold-webfont.woff -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-bold-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-bold-webfont.woff2 -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-bolditalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-bolditalic-webfont.ttf -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-bolditalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-bolditalic-webfont.woff -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-bolditalic-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-bolditalic-webfont.woff2 -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-extralight-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-extralight-webfont.ttf -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-extralight-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-extralight-webfont.woff -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-extralight-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-extralight-webfont.woff2 -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-extralightitalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-extralightitalic-webfont.ttf -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-extralightitalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-extralightitalic-webfont.woff -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-extralightitalic-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-extralightitalic-webfont.woff2 -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-italic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-italic-webfont.ttf -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-italic-webfont.woff -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-italic-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-italic-webfont.woff2 -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-light-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-light-webfont.ttf -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-light-webfont.woff -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-light-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-light-webfont.woff2 -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-lightitalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-lightitalic-webfont.ttf -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-lightitalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-lightitalic-webfont.woff -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-lightitalic-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-lightitalic-webfont.woff2 -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-regular-webfont.ttf -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-regular-webfont.woff -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-regular-webfont.woff2 -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-semibold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-semibold-webfont.ttf -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-semibold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-semibold-webfont.woff -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-semibold-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-semibold-webfont.woff2 -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-semibolditalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-semibolditalic-webfont.ttf -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-semibolditalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-semibolditalic-webfont.woff -------------------------------------------------------------------------------- /public/fonts/source-sans-pro/sourcesanspro-semibolditalic-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/public/fonts/source-sans-pro/sourcesanspro-semibolditalic-webfont.woff2 -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /spec/components/radio_collection_component_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/components/radio_collection_component_spec.rb -------------------------------------------------------------------------------- /spec/components/wizard_fieldset_component_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/components/wizard_fieldset_component_spec.rb -------------------------------------------------------------------------------- /spec/controllers/airtable_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/controllers/airtable_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/api/api_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/controllers/api/api_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/api/security_events_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/controllers/api/security_events_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/api/service_providers_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/controllers/api/service_providers_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/application_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/controllers/application_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/banner_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/controllers/banner_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/docs_redirect_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/controllers/docs_redirect_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/env_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/controllers/env_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/extracts_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/controllers/extracts_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/home_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/controllers/home_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/security_events_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/controllers/security_events_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/service_config_wizard_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/controllers/service_config_wizard_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/service_providers_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/controllers/service_providers_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/teams/users_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/controllers/teams/users_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/teams_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/controllers/teams_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/tools_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/controllers/tools_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/users/omniauth_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/controllers/users/omniauth_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/users/sessions_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/controllers/users/sessions_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/users_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/controllers/users_controller_spec.rb -------------------------------------------------------------------------------- /spec/cve_2015_9284_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/cve_2015_9284_spec.rb -------------------------------------------------------------------------------- /spec/factories/agency.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/factories/agency.rb -------------------------------------------------------------------------------- /spec/factories/auth_tokens.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/factories/auth_tokens.rb -------------------------------------------------------------------------------- /spec/factories/banners.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/factories/banners.rb -------------------------------------------------------------------------------- /spec/factories/extract.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/factories/extract.rb -------------------------------------------------------------------------------- /spec/factories/roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/factories/roles.rb -------------------------------------------------------------------------------- /spec/factories/security_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/factories/security_event.rb -------------------------------------------------------------------------------- /spec/factories/service_providers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/factories/service_providers.rb -------------------------------------------------------------------------------- /spec/factories/team.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/factories/team.rb -------------------------------------------------------------------------------- /spec/factories/team_memberships.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/factories/team_memberships.rb -------------------------------------------------------------------------------- /spec/factories/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/factories/users.rb -------------------------------------------------------------------------------- /spec/factories/wizard_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/factories/wizard_steps.rb -------------------------------------------------------------------------------- /spec/features/accessibility/env_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/features/accessibility/env_spec.rb -------------------------------------------------------------------------------- /spec/features/accessibility/home_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/features/accessibility/home_spec.rb -------------------------------------------------------------------------------- /spec/features/accessibility/security_events_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/features/accessibility/security_events_spec.rb -------------------------------------------------------------------------------- /spec/features/accessibility/service_config_wizard_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/features/accessibility/service_config_wizard_spec.rb -------------------------------------------------------------------------------- /spec/features/accessibility/service_providers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/features/accessibility/service_providers_spec.rb -------------------------------------------------------------------------------- /spec/features/accessibility/teams/users_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/features/accessibility/teams/users_spec.rb -------------------------------------------------------------------------------- /spec/features/accessibility/teams_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/features/accessibility/teams_spec.rb -------------------------------------------------------------------------------- /spec/features/accessibility/tools_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/features/accessibility/tools_spec.rb -------------------------------------------------------------------------------- /spec/features/accessibility/users_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/features/accessibility/users_spec.rb -------------------------------------------------------------------------------- /spec/features/auth_tokens_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/features/auth_tokens_spec.rb -------------------------------------------------------------------------------- /spec/features/banners_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/features/banners_spec.rb -------------------------------------------------------------------------------- /spec/features/env_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/features/env_spec.rb -------------------------------------------------------------------------------- /spec/features/external_link_redirect_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/features/external_link_redirect_spec.rb -------------------------------------------------------------------------------- /spec/features/extract_download_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/features/extract_download_spec.rb -------------------------------------------------------------------------------- /spec/features/footer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/features/footer_spec.rb -------------------------------------------------------------------------------- /spec/features/home_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/features/home_spec.rb -------------------------------------------------------------------------------- /spec/features/internal_reports_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/features/internal_reports_spec.rb -------------------------------------------------------------------------------- /spec/features/logo_upload_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/features/logo_upload_spec.rb -------------------------------------------------------------------------------- /spec/features/nav_links_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/features/nav_links_spec.rb -------------------------------------------------------------------------------- /spec/features/service_config_wizard_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/features/service_config_wizard_spec.rb -------------------------------------------------------------------------------- /spec/features/service_providers_index_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/features/service_providers_index_spec.rb -------------------------------------------------------------------------------- /spec/features/service_providers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/features/service_providers_spec.rb -------------------------------------------------------------------------------- /spec/features/teams/users_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/features/teams/users_spec.rb -------------------------------------------------------------------------------- /spec/features/teams_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/features/teams_spec.rb -------------------------------------------------------------------------------- /spec/features/users_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/features/users_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/big-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/fixtures/big-logo.png -------------------------------------------------------------------------------- /spec/fixtures/files/extract_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/fixtures/files/extract_sample.json -------------------------------------------------------------------------------- /spec/fixtures/files/extract_sample_no_team.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/fixtures/files/extract_sample_no_team.json -------------------------------------------------------------------------------- /spec/fixtures/files/extract_with_missing_images.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/fixtures/files/extract_with_missing_images.tgz -------------------------------------------------------------------------------- /spec/fixtures/files/issuers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/fixtures/files/issuers.txt -------------------------------------------------------------------------------- /spec/fixtures/files/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/fixtures/files/logo.png -------------------------------------------------------------------------------- /spec/fixtures/files/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/fixtures/files/logo.svg -------------------------------------------------------------------------------- /spec/fixtures/files/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/fixtures/files/roles.yml -------------------------------------------------------------------------------- /spec/fixtures/files/testcert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/fixtures/files/testcert.pem -------------------------------------------------------------------------------- /spec/fixtures/invalid.txt: -------------------------------------------------------------------------------- 1 | invalid 2 | -------------------------------------------------------------------------------- /spec/fixtures/logo_with_script.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/fixtures/logo_with_script.svg -------------------------------------------------------------------------------- /spec/fixtures/logo_without_size.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/fixtures/logo_without_size.svg -------------------------------------------------------------------------------- /spec/fixtures/simple_extract.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/fixtures/simple_extract.tgz -------------------------------------------------------------------------------- /spec/forms/security_event_form_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/forms/security_event_form_spec.rb -------------------------------------------------------------------------------- /spec/helpers/application_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/helpers/application_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/banner_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/helpers/banner_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/footer_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/helpers/footer_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/security_event_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/helpers/security_event_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/service_provider_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/helpers/service_provider_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/team_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/helpers/team_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/tool_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/helpers/tool_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/user_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/helpers/user_helper_spec.rb -------------------------------------------------------------------------------- /spec/i18n_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/i18n_spec.rb -------------------------------------------------------------------------------- /spec/lib/events_documenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/lib/events_documenter_spec.rb -------------------------------------------------------------------------------- /spec/models/airtable_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/models/airtable_spec.rb -------------------------------------------------------------------------------- /spec/models/auth_token_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/models/auth_token_spec.rb -------------------------------------------------------------------------------- /spec/models/banner_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/models/banner_spec.rb -------------------------------------------------------------------------------- /spec/models/extract_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/models/extract_spec.rb -------------------------------------------------------------------------------- /spec/models/help_text_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/models/help_text_spec.rb -------------------------------------------------------------------------------- /spec/models/role_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/models/role_spec.rb -------------------------------------------------------------------------------- /spec/models/saml_request_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/models/saml_request_spec.rb -------------------------------------------------------------------------------- /spec/models/security_event_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/models/security_event_spec.rb -------------------------------------------------------------------------------- /spec/models/service_provider_certificate_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/models/service_provider_certificate_spec.rb -------------------------------------------------------------------------------- /spec/models/service_provider_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/models/service_provider_spec.rb -------------------------------------------------------------------------------- /spec/models/team_audit_event_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/models/team_audit_event_spec.rb -------------------------------------------------------------------------------- /spec/models/team_membership_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/models/team_membership_spec.rb -------------------------------------------------------------------------------- /spec/models/team_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/models/team_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/models/wizard_step_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/models/wizard_step_spec.rb -------------------------------------------------------------------------------- /spec/models/zendesk_request_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/models/zendesk_request_spec.rb -------------------------------------------------------------------------------- /spec/policies/analytics_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/policies/analytics_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/banner_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/policies/banner_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/base_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/policies/base_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/extract_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/policies/extract_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/paper_trail/version_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/policies/paper_trail/version_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/security_event_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/policies/security_event_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/service_config_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/policies/service_config_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/service_provider_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/policies/service_provider_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/service_provider_updater_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/policies/service_provider_updater_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/team_membership_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/policies/team_membership_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/team_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/policies/team_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/tool_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/policies/tool_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/user_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/policies/user_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/wizard_step_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/policies/wizard_step_policy_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/requests/preserved_urls_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/requests/preserved_urls_spec.rb -------------------------------------------------------------------------------- /spec/requests/rack_attack_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/requests/rack_attack_spec.rb -------------------------------------------------------------------------------- /spec/requests/service_provider_api_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/requests/service_provider_api_spec.rb -------------------------------------------------------------------------------- /spec/requests/service_providers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/requests/service_providers_spec.rb -------------------------------------------------------------------------------- /spec/routing/security_events_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/routing/security_events_spec.rb -------------------------------------------------------------------------------- /spec/serializers/service_provider_serializer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/serializers/service_provider_serializer_spec.rb -------------------------------------------------------------------------------- /spec/services/auth_token_auditor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/services/auth_token_auditor_spec.rb -------------------------------------------------------------------------------- /spec/services/delete_unconfirmed_users_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/services/delete_unconfirmed_users_spec.rb -------------------------------------------------------------------------------- /spec/services/deploy_status_checker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/services/deploy_status_checker_spec.rb -------------------------------------------------------------------------------- /spec/services/event_logger_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/services/event_logger_spec.rb -------------------------------------------------------------------------------- /spec/services/extract_archive_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/services/extract_archive_spec.rb -------------------------------------------------------------------------------- /spec/services/idp_public_keys_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/services/idp_public_keys_spec.rb -------------------------------------------------------------------------------- /spec/services/make_admin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/services/make_admin_spec.rb -------------------------------------------------------------------------------- /spec/services/model_changes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/services/model_changes_spec.rb -------------------------------------------------------------------------------- /spec/services/populate_roles_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/services/populate_roles_spec.rb -------------------------------------------------------------------------------- /spec/services/seeders/agency_seeder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/services/seeders/agency_seeder_spec.rb -------------------------------------------------------------------------------- /spec/services/seeders/base_seeder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/services/seeders/base_seeder_spec.rb -------------------------------------------------------------------------------- /spec/services/seeders/roles_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/services/seeders/roles_spec.rb -------------------------------------------------------------------------------- /spec/services/seeders/teams_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/services/seeders/teams_spec.rb -------------------------------------------------------------------------------- /spec/services/service_provider_archiver_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/services/service_provider_archiver_spec.rb -------------------------------------------------------------------------------- /spec/services/service_provider_importer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/services/service_provider_importer_spec.rb -------------------------------------------------------------------------------- /spec/services/service_provider_updater_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/services/service_provider_updater_spec.rb -------------------------------------------------------------------------------- /spec/services/user_permissions_csv_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/services/user_permissions_csv_spec.rb -------------------------------------------------------------------------------- /spec/services/user_session_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/services/user_session_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/action_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/support/action_mailer.rb -------------------------------------------------------------------------------- /spec/support/capybara.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/support/capybara.rb -------------------------------------------------------------------------------- /spec/support/controller_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/support/controller_helper.rb -------------------------------------------------------------------------------- /spec/support/deploy_status_checker_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/support/deploy_status_checker_helper.rb -------------------------------------------------------------------------------- /spec/support/factory_bot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/support/factory_bot.rb -------------------------------------------------------------------------------- /spec/support/fake_request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/support/fake_request.rb -------------------------------------------------------------------------------- /spec/support/fake_saml_idp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/support/fake_saml_idp.rb -------------------------------------------------------------------------------- /spec/support/features/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/support/i18n.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/support/i18n.rb -------------------------------------------------------------------------------- /spec/support/matchers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/support/matchers/accessibility.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/support/matchers/accessibility.rb -------------------------------------------------------------------------------- /spec/support/migration_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/support/migration_helpers.rb -------------------------------------------------------------------------------- /spec/support/mixins/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/support/shared_examples/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/support/shoulda_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/support/shoulda_matchers.rb -------------------------------------------------------------------------------- /spec/support/x509_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/support/x509_helpers.rb -------------------------------------------------------------------------------- /spec/validators/attribute_bundle_validator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/validators/attribute_bundle_validator_spec.rb -------------------------------------------------------------------------------- /spec/validators/certs_are_pems_validator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/validators/certs_are_pems_validator_spec.rb -------------------------------------------------------------------------------- /spec/views/security_events/_table.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/views/security_events/_table.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/service_providers/_certificate.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/views/service_providers/_certificate.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/service_providers/_certificate_expiration_td.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/spec/views/service_providers/_certificate_expiration_td.html.erb_spec.rb -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/identity-dashboard/HEAD/webpack.config.js --------------------------------------------------------------------------------