├── .allstar └── branch_protection.yaml ├── .bundler-version ├── .eslintignore ├── .eslintrc ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .nvmrc ├── .prettierrc.json ├── .rspec ├── .ruby-version ├── .vscode └── settings.json ├── CODEOWNERS ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.md ├── Makefile ├── README.md ├── SECURITY.md ├── _config.yml ├── _data ├── errors.yml ├── nav.yml ├── risc_incoming.yml ├── risc_outgoing.yml └── saml.yml ├── _includes ├── accordion.html ├── alert.html ├── dap.html ├── footer-navigation.html ├── footer.html ├── icon.html ├── icon_list.html ├── nav │ ├── item.html │ └── list.html ├── osc_analytics.html ├── risc_event.json ├── schema.html ├── search.html ├── snippets │ ├── auth_content │ │ ├── aal_values.md │ │ ├── deprecated_values.md │ │ └── service_levels.md │ ├── oidc │ │ ├── auth │ │ │ ├── failure.md │ │ │ ├── jwt.md │ │ │ ├── pkce.md │ │ │ └── success.md │ │ ├── certificates.md │ │ ├── logout │ │ │ ├── request.md │ │ │ └── response.md │ │ ├── token │ │ │ ├── jwt.md │ │ │ ├── pkce.md │ │ │ ├── response.md │ │ │ └── token.md │ │ └── user-info │ │ │ ├── request.md │ │ │ └── response.md │ └── saml │ │ ├── auth │ │ ├── request.md │ │ ├── request_example.md │ │ ├── response.md │ │ └── response_example.md │ │ └── logout │ │ ├── remote_logout.md │ │ ├── request.md │ │ ├── request_example.md │ │ ├── response.md │ │ └── response_example.md ├── support │ ├── faq_csp_violation.html │ ├── faq_direct_to_user_support.md │ ├── faq_how_does_it_work.html │ ├── faq_issues_we_can_help.md │ ├── faq_issues_we_cant_help.md │ ├── faq_saml_signature.html │ ├── faq_unauthorized_ac.html │ ├── faq_unauthorized_sp.html │ ├── faq_unrecognized_nameidformat.html │ ├── faq_zendesk_guidelines.md │ └── oidc.md ├── yaml └── yaml_download.md ├── _layouts ├── base.html ├── documentation.html ├── home.html └── not_found.html ├── _pages ├── 404.md ├── attributes.md ├── index.md ├── oidc │ ├── authorization.md │ ├── authorization │ │ └── pkce.md │ ├── certificates.md │ ├── getting-started.md │ ├── logout.md │ ├── token.md │ ├── token │ │ └── pkce.md │ └── user-info.md ├── overview.md ├── production.md ├── push-notifications.md ├── risc.json ├── saml │ ├── authentication.md │ ├── getting-started.md │ └── logout.md ├── security-events.md ├── support.md ├── testing.md └── user-experience │ ├── agency-logo.md │ ├── cancel-url.md │ ├── failure-proof.md │ ├── faq-content.md │ ├── getting-started.md │ ├── help-text.md │ ├── knowledge-articles.md │ └── sign-in-sign-out.md ├── _plugins ├── content_code.rb ├── content_typography.rb ├── copy_to_destination.rb ├── pretty_jsonify.rb └── yaml_content_disposition.rb ├── assets ├── img │ ├── agency-logo-contrast.png │ ├── dashboard_issuer.png │ ├── do_logo.svg │ ├── dont_logo.svg │ ├── global-sign-in.png │ ├── icon-system-status.svg │ ├── logo-guidelines.png │ ├── logo-white.svg │ ├── logo.svg │ ├── oidc-auth-flow.png │ ├── oidc-ial1-flow.png │ ├── oidc-ial2-flow.png │ ├── sign-in-button.svg │ ├── sign-in-menu.svg │ ├── sign-out-button.png │ └── sign-out-menu.png ├── js │ ├── anchor.js │ ├── anchor_accordion.js │ └── toggle_view.js ├── scss │ ├── _footer.scss │ ├── _not_found.scss │ └── main.css.scss └── yaml │ ├── document_classification_error.yml │ ├── image_resolution_error.yml │ ├── individual_state_error.yml │ ├── proofing.yml │ ├── proofing_vendor_error.yml │ └── sample_full_error.yml ├── favicon.ico ├── federalist.json ├── package.json ├── scripts └── htmlproofer └── spec ├── e2e ├── accessibility.test.js └── accordion.test.js ├── page.md_spec.rb ├── risc.json_spec.rb ├── spec_helper.rb └── support └── matchers.rb /.allstar/branch_protection.yaml: -------------------------------------------------------------------------------- 1 | dismissStale: false 2 | -------------------------------------------------------------------------------- /.bundler-version: -------------------------------------------------------------------------------- 1 | 2.2.28 2 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | _site 2 | node_modules 3 | vendor 4 | assets/js/anchor.js 5 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/* -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format=documentation 3 | 4 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.2.5 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "git.ignoreLimitWarning": true 3 | } 4 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/SECURITY.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_config.yml -------------------------------------------------------------------------------- /_data/errors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_data/errors.yml -------------------------------------------------------------------------------- /_data/nav.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_data/nav.yml -------------------------------------------------------------------------------- /_data/risc_incoming.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_data/risc_incoming.yml -------------------------------------------------------------------------------- /_data/risc_outgoing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_data/risc_outgoing.yml -------------------------------------------------------------------------------- /_data/saml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_data/saml.yml -------------------------------------------------------------------------------- /_includes/accordion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/accordion.html -------------------------------------------------------------------------------- /_includes/alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/alert.html -------------------------------------------------------------------------------- /_includes/dap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/dap.html -------------------------------------------------------------------------------- /_includes/footer-navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/footer-navigation.html -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/icon.html -------------------------------------------------------------------------------- /_includes/icon_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/icon_list.html -------------------------------------------------------------------------------- /_includes/nav/item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/nav/item.html -------------------------------------------------------------------------------- /_includes/nav/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/nav/list.html -------------------------------------------------------------------------------- /_includes/osc_analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/osc_analytics.html -------------------------------------------------------------------------------- /_includes/risc_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/risc_event.json -------------------------------------------------------------------------------- /_includes/schema.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/schema.html -------------------------------------------------------------------------------- /_includes/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/search.html -------------------------------------------------------------------------------- /_includes/snippets/auth_content/aal_values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/snippets/auth_content/aal_values.md -------------------------------------------------------------------------------- /_includes/snippets/auth_content/deprecated_values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/snippets/auth_content/deprecated_values.md -------------------------------------------------------------------------------- /_includes/snippets/auth_content/service_levels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/snippets/auth_content/service_levels.md -------------------------------------------------------------------------------- /_includes/snippets/oidc/auth/failure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/snippets/oidc/auth/failure.md -------------------------------------------------------------------------------- /_includes/snippets/oidc/auth/jwt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/snippets/oidc/auth/jwt.md -------------------------------------------------------------------------------- /_includes/snippets/oidc/auth/pkce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/snippets/oidc/auth/pkce.md -------------------------------------------------------------------------------- /_includes/snippets/oidc/auth/success.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/snippets/oidc/auth/success.md -------------------------------------------------------------------------------- /_includes/snippets/oidc/certificates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/snippets/oidc/certificates.md -------------------------------------------------------------------------------- /_includes/snippets/oidc/logout/request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/snippets/oidc/logout/request.md -------------------------------------------------------------------------------- /_includes/snippets/oidc/logout/response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/snippets/oidc/logout/response.md -------------------------------------------------------------------------------- /_includes/snippets/oidc/token/jwt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/snippets/oidc/token/jwt.md -------------------------------------------------------------------------------- /_includes/snippets/oidc/token/pkce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/snippets/oidc/token/pkce.md -------------------------------------------------------------------------------- /_includes/snippets/oidc/token/response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/snippets/oidc/token/response.md -------------------------------------------------------------------------------- /_includes/snippets/oidc/token/token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/snippets/oidc/token/token.md -------------------------------------------------------------------------------- /_includes/snippets/oidc/user-info/request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/snippets/oidc/user-info/request.md -------------------------------------------------------------------------------- /_includes/snippets/oidc/user-info/response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/snippets/oidc/user-info/response.md -------------------------------------------------------------------------------- /_includes/snippets/saml/auth/request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/snippets/saml/auth/request.md -------------------------------------------------------------------------------- /_includes/snippets/saml/auth/request_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/snippets/saml/auth/request_example.md -------------------------------------------------------------------------------- /_includes/snippets/saml/auth/response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/snippets/saml/auth/response.md -------------------------------------------------------------------------------- /_includes/snippets/saml/auth/response_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/snippets/saml/auth/response_example.md -------------------------------------------------------------------------------- /_includes/snippets/saml/logout/remote_logout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/snippets/saml/logout/remote_logout.md -------------------------------------------------------------------------------- /_includes/snippets/saml/logout/request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/snippets/saml/logout/request.md -------------------------------------------------------------------------------- /_includes/snippets/saml/logout/request_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/snippets/saml/logout/request_example.md -------------------------------------------------------------------------------- /_includes/snippets/saml/logout/response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/snippets/saml/logout/response.md -------------------------------------------------------------------------------- /_includes/snippets/saml/logout/response_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/snippets/saml/logout/response_example.md -------------------------------------------------------------------------------- /_includes/support/faq_csp_violation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/support/faq_csp_violation.html -------------------------------------------------------------------------------- /_includes/support/faq_direct_to_user_support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/support/faq_direct_to_user_support.md -------------------------------------------------------------------------------- /_includes/support/faq_how_does_it_work.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/support/faq_how_does_it_work.html -------------------------------------------------------------------------------- /_includes/support/faq_issues_we_can_help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/support/faq_issues_we_can_help.md -------------------------------------------------------------------------------- /_includes/support/faq_issues_we_cant_help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/support/faq_issues_we_cant_help.md -------------------------------------------------------------------------------- /_includes/support/faq_saml_signature.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/support/faq_saml_signature.html -------------------------------------------------------------------------------- /_includes/support/faq_unauthorized_ac.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/support/faq_unauthorized_ac.html -------------------------------------------------------------------------------- /_includes/support/faq_unauthorized_sp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/support/faq_unauthorized_sp.html -------------------------------------------------------------------------------- /_includes/support/faq_unrecognized_nameidformat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/support/faq_unrecognized_nameidformat.html -------------------------------------------------------------------------------- /_includes/support/faq_zendesk_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/support/faq_zendesk_guidelines.md -------------------------------------------------------------------------------- /_includes/support/oidc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/support/oidc.md -------------------------------------------------------------------------------- /_includes/yaml: -------------------------------------------------------------------------------- 1 | ../assets/yaml -------------------------------------------------------------------------------- /_includes/yaml_download.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_includes/yaml_download.md -------------------------------------------------------------------------------- /_layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_layouts/base.html -------------------------------------------------------------------------------- /_layouts/documentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_layouts/documentation.html -------------------------------------------------------------------------------- /_layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_layouts/home.html -------------------------------------------------------------------------------- /_layouts/not_found.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_layouts/not_found.html -------------------------------------------------------------------------------- /_pages/404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_pages/404.md -------------------------------------------------------------------------------- /_pages/attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_pages/attributes.md -------------------------------------------------------------------------------- /_pages/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_pages/index.md -------------------------------------------------------------------------------- /_pages/oidc/authorization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_pages/oidc/authorization.md -------------------------------------------------------------------------------- /_pages/oidc/authorization/pkce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_pages/oidc/authorization/pkce.md -------------------------------------------------------------------------------- /_pages/oidc/certificates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_pages/oidc/certificates.md -------------------------------------------------------------------------------- /_pages/oidc/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_pages/oidc/getting-started.md -------------------------------------------------------------------------------- /_pages/oidc/logout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_pages/oidc/logout.md -------------------------------------------------------------------------------- /_pages/oidc/token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_pages/oidc/token.md -------------------------------------------------------------------------------- /_pages/oidc/token/pkce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_pages/oidc/token/pkce.md -------------------------------------------------------------------------------- /_pages/oidc/user-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_pages/oidc/user-info.md -------------------------------------------------------------------------------- /_pages/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_pages/overview.md -------------------------------------------------------------------------------- /_pages/production.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_pages/production.md -------------------------------------------------------------------------------- /_pages/push-notifications.md: -------------------------------------------------------------------------------- 1 | --- 2 | redirect_to: /security-events/ 3 | --- -------------------------------------------------------------------------------- /_pages/risc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_pages/risc.json -------------------------------------------------------------------------------- /_pages/saml/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_pages/saml/authentication.md -------------------------------------------------------------------------------- /_pages/saml/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_pages/saml/getting-started.md -------------------------------------------------------------------------------- /_pages/saml/logout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_pages/saml/logout.md -------------------------------------------------------------------------------- /_pages/security-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_pages/security-events.md -------------------------------------------------------------------------------- /_pages/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_pages/support.md -------------------------------------------------------------------------------- /_pages/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_pages/testing.md -------------------------------------------------------------------------------- /_pages/user-experience/agency-logo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_pages/user-experience/agency-logo.md -------------------------------------------------------------------------------- /_pages/user-experience/cancel-url.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_pages/user-experience/cancel-url.md -------------------------------------------------------------------------------- /_pages/user-experience/failure-proof.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_pages/user-experience/failure-proof.md -------------------------------------------------------------------------------- /_pages/user-experience/faq-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_pages/user-experience/faq-content.md -------------------------------------------------------------------------------- /_pages/user-experience/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_pages/user-experience/getting-started.md -------------------------------------------------------------------------------- /_pages/user-experience/help-text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_pages/user-experience/help-text.md -------------------------------------------------------------------------------- /_pages/user-experience/knowledge-articles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_pages/user-experience/knowledge-articles.md -------------------------------------------------------------------------------- /_pages/user-experience/sign-in-sign-out.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_pages/user-experience/sign-in-sign-out.md -------------------------------------------------------------------------------- /_plugins/content_code.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_plugins/content_code.rb -------------------------------------------------------------------------------- /_plugins/content_typography.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_plugins/content_typography.rb -------------------------------------------------------------------------------- /_plugins/copy_to_destination.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_plugins/copy_to_destination.rb -------------------------------------------------------------------------------- /_plugins/pretty_jsonify.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_plugins/pretty_jsonify.rb -------------------------------------------------------------------------------- /_plugins/yaml_content_disposition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/_plugins/yaml_content_disposition.rb -------------------------------------------------------------------------------- /assets/img/agency-logo-contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/assets/img/agency-logo-contrast.png -------------------------------------------------------------------------------- /assets/img/dashboard_issuer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/assets/img/dashboard_issuer.png -------------------------------------------------------------------------------- /assets/img/do_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/assets/img/do_logo.svg -------------------------------------------------------------------------------- /assets/img/dont_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/assets/img/dont_logo.svg -------------------------------------------------------------------------------- /assets/img/global-sign-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/assets/img/global-sign-in.png -------------------------------------------------------------------------------- /assets/img/icon-system-status.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/assets/img/icon-system-status.svg -------------------------------------------------------------------------------- /assets/img/logo-guidelines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/assets/img/logo-guidelines.png -------------------------------------------------------------------------------- /assets/img/logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/assets/img/logo-white.svg -------------------------------------------------------------------------------- /assets/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/assets/img/logo.svg -------------------------------------------------------------------------------- /assets/img/oidc-auth-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/assets/img/oidc-auth-flow.png -------------------------------------------------------------------------------- /assets/img/oidc-ial1-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/assets/img/oidc-ial1-flow.png -------------------------------------------------------------------------------- /assets/img/oidc-ial2-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/assets/img/oidc-ial2-flow.png -------------------------------------------------------------------------------- /assets/img/sign-in-button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/assets/img/sign-in-button.svg -------------------------------------------------------------------------------- /assets/img/sign-in-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/assets/img/sign-in-menu.svg -------------------------------------------------------------------------------- /assets/img/sign-out-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/assets/img/sign-out-button.png -------------------------------------------------------------------------------- /assets/img/sign-out-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/assets/img/sign-out-menu.png -------------------------------------------------------------------------------- /assets/js/anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/assets/js/anchor.js -------------------------------------------------------------------------------- /assets/js/anchor_accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/assets/js/anchor_accordion.js -------------------------------------------------------------------------------- /assets/js/toggle_view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/assets/js/toggle_view.js -------------------------------------------------------------------------------- /assets/scss/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/assets/scss/_footer.scss -------------------------------------------------------------------------------- /assets/scss/_not_found.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/assets/scss/_not_found.scss -------------------------------------------------------------------------------- /assets/scss/main.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/assets/scss/main.css.scss -------------------------------------------------------------------------------- /assets/yaml/document_classification_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/assets/yaml/document_classification_error.yml -------------------------------------------------------------------------------- /assets/yaml/image_resolution_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/assets/yaml/image_resolution_error.yml -------------------------------------------------------------------------------- /assets/yaml/individual_state_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/assets/yaml/individual_state_error.yml -------------------------------------------------------------------------------- /assets/yaml/proofing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/assets/yaml/proofing.yml -------------------------------------------------------------------------------- /assets/yaml/proofing_vendor_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/assets/yaml/proofing_vendor_error.yml -------------------------------------------------------------------------------- /assets/yaml/sample_full_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/assets/yaml/sample_full_error.yml -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/favicon.ico -------------------------------------------------------------------------------- /federalist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/federalist.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/package.json -------------------------------------------------------------------------------- /scripts/htmlproofer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/scripts/htmlproofer -------------------------------------------------------------------------------- /spec/e2e/accessibility.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/spec/e2e/accessibility.test.js -------------------------------------------------------------------------------- /spec/e2e/accordion.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/spec/e2e/accordion.test.js -------------------------------------------------------------------------------- /spec/page.md_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/spec/page.md_spec.rb -------------------------------------------------------------------------------- /spec/risc.json_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/spec/risc.json_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA-TTS/identity-dev-docs/HEAD/spec/support/matchers.rb --------------------------------------------------------------------------------