├── .eslintignore ├── .eslintrc.js ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── actions │ ├── download-plugin │ │ └── action.yml │ └── run-cypress-tests │ │ └── action.yml ├── dependabot.yml ├── release-notes-drafter-config.yml └── workflows │ ├── add-untriaged.yml │ ├── auto-release.yml │ ├── backport.yml │ ├── changelog_verifier.yml │ ├── cypress-test-multiauth-e2e.yml │ ├── cypress-test-multidatasources-disabled-e2e.yml │ ├── cypress-test-multidatasources-enabled-e2e.yml │ ├── cypress-test-oidc-e2e.yml │ ├── cypress-test-resource-sharing-enabled-e2e.yml │ ├── cypress-test-saml-e2e.yml │ ├── cypress-test-tenancy-disabled.yml │ ├── cypress-test.yml │ ├── delete_backport_branch.yml │ ├── dependabot_pr.yml │ ├── integration-test.yml │ ├── link-checker.yml │ ├── unit-test.yml │ └── verify-binary-installation.yml ├── .gitignore ├── .husky └── pre-commit ├── .lycheeignore ├── .opensearch_dashboards-plugin-helpers.json ├── .prettierrc ├── .stylelintrc.yml ├── .whitesource ├── ADMINS.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEVELOPER_GUIDE.md ├── LICENSE ├── MAINTAINERS.md ├── NOTICE.txt ├── README.md ├── RELEASING.md ├── SECURITY.md ├── THIRD-PARTY ├── __mocks__ ├── fileMock.js └── styleMock.js ├── babel.config.js ├── codecov.yml ├── common ├── index.test.ts └── index.ts ├── cypress.config.js ├── opensearch_dashboards.json ├── package.json ├── public ├── apps │ ├── account │ │ ├── account-app.tsx │ │ ├── account-nav-button.scss │ │ ├── account-nav-button.tsx │ │ ├── constants.tsx │ │ ├── log-out-button.tsx │ │ ├── password-reset-panel.tsx │ │ ├── role-info-panel.tsx │ │ ├── tenant-switch-panel.tsx │ │ ├── test │ │ │ ├── __snapshots__ │ │ │ │ ├── account-nav-button.test.tsx.snap │ │ │ │ ├── log-out-button.test.tsx.snap │ │ │ │ ├── role-info-panel.test.tsx.snap │ │ │ │ └── tenant-switch-panel.test.tsx.snap │ │ │ ├── account-app.test.tsx │ │ │ ├── account-nav-button.test.tsx │ │ │ ├── log-out-button.test.tsx │ │ │ ├── password-reset-panel.test.tsx │ │ │ ├── plugin.test.tsx │ │ │ ├── role-info-panel.test.tsx │ │ │ ├── switch-tenants.test.tsx │ │ │ └── tenant-switch-panel.test.tsx │ │ ├── types.ts │ │ └── utils.tsx │ ├── apps-constants.tsx │ ├── configuration │ │ ├── _index.scss │ │ ├── access-error-component.tsx │ │ ├── app-router.tsx │ │ ├── configuration-app.tsx │ │ ├── constants.tsx │ │ ├── cross-page-toast.tsx │ │ ├── header │ │ │ ├── header-components.tsx │ │ │ ├── header-props.tsx │ │ │ └── test │ │ │ │ └── header-components.test.tsx │ │ ├── panels │ │ │ ├── audit-logging │ │ │ │ ├── _index.scss │ │ │ │ ├── audit-logging-edit-settings.tsx │ │ │ │ ├── audit-logging.tsx │ │ │ │ ├── code-editor.tsx │ │ │ │ ├── constants.tsx │ │ │ │ ├── edit-setting-group.tsx │ │ │ │ ├── test │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── audit-logging.test.tsx.snap │ │ │ │ │ ├── audit-logging-edit-settings.test.tsx │ │ │ │ │ ├── audit-logging.test.tsx │ │ │ │ │ ├── code-editor.test.tsx │ │ │ │ │ ├── edit-setting-group.test.tsx │ │ │ │ │ └── view-setting-group.test.tsx │ │ │ │ ├── types.tsx │ │ │ │ └── view-setting-group.tsx │ │ │ ├── auth-view │ │ │ │ ├── _index.scss │ │ │ │ ├── auth-view.tsx │ │ │ │ ├── authentication-sequence-panel.tsx │ │ │ │ ├── authorization-panel.tsx │ │ │ │ ├── instruction-view.tsx │ │ │ │ └── test │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── auth-view.test.tsx.snap │ │ │ │ │ ├── auth-view.test.tsx │ │ │ │ │ ├── authentication-sequence-panel.test.tsx │ │ │ │ │ ├── authorization-panel.test.tsx │ │ │ │ │ └── instruction-view.test.tsx │ │ │ ├── expression-modal.tsx │ │ │ ├── get-started.tsx │ │ │ ├── internal-user-edit │ │ │ │ ├── attribute-panel.tsx │ │ │ │ ├── backend-role-panel.tsx │ │ │ │ ├── internal-user-edit.tsx │ │ │ │ ├── test │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── backend-role-panel.test.tsx.snap │ │ │ │ │ ├── attribute-panel.test.tsx │ │ │ │ │ ├── backend-role-panel.test.tsx │ │ │ │ │ └── internal-user-edit.test.tsx │ │ │ │ └── types.tsx │ │ │ ├── nav-panel.tsx │ │ │ ├── permission-list │ │ │ │ ├── edit-modal.tsx │ │ │ │ ├── permission-list.tsx │ │ │ │ └── test │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── permission-list.test.tsx.snap │ │ │ │ │ ├── edit-modal.test.tsx │ │ │ │ │ └── permission-list.test.tsx │ │ │ ├── permission-tree │ │ │ │ ├── _index.scss │ │ │ │ ├── index.ts │ │ │ │ ├── permission-tree.tsx │ │ │ │ └── test │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── permission-tree.test.tsx.snap │ │ │ │ │ └── permission-tree.test.tsx │ │ │ ├── role-edit │ │ │ │ ├── cluster-permission-panel.tsx │ │ │ │ ├── index-permission-panel.tsx │ │ │ │ ├── role-edit.tsx │ │ │ │ ├── tenant-panel.tsx │ │ │ │ ├── test │ │ │ │ │ ├── cluster-permission-panel.test.tsx │ │ │ │ │ ├── index-permission-panel.test.tsx │ │ │ │ │ ├── role-edit-filtering.test.tsx │ │ │ │ │ ├── role-edit.test.tsx │ │ │ │ │ └── tenant-panel.test.tsx │ │ │ │ └── types.tsx │ │ │ ├── role-list.tsx │ │ │ ├── role-mapping │ │ │ │ ├── external-identities-panel.tsx │ │ │ │ ├── role-edit-mapped-user.tsx │ │ │ │ ├── test │ │ │ │ │ ├── external-identities-panel.test.tsx │ │ │ │ │ ├── role-edit-mapped-user.test.tsx │ │ │ │ │ └── users-panel.test.tsx │ │ │ │ ├── types.tsx │ │ │ │ └── users-panel.tsx │ │ │ ├── role-view │ │ │ │ ├── cluster-permission-panel.tsx │ │ │ │ ├── index-permission-panel.tsx │ │ │ │ ├── role-view.tsx │ │ │ │ ├── tenants-panel.tsx │ │ │ │ └── test │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── index-permission-panel.test.tsx.snap │ │ │ │ │ ├── role-view.test.tsx.snap │ │ │ │ │ └── tenants-panel.test.tsx.snap │ │ │ │ │ ├── cluster-permission-panel.test.tsx │ │ │ │ │ ├── index-permission-panel.test.tsx │ │ │ │ │ ├── role-view.test.tsx │ │ │ │ │ └── tenants-panel.test.tsx │ │ │ ├── tenancy-config │ │ │ │ └── types.tsx │ │ │ ├── tenant-list │ │ │ │ ├── configure_tab1.tsx │ │ │ │ ├── edit-modal.tsx │ │ │ │ ├── manage_tab.tsx │ │ │ │ ├── save_changes_modal.tsx │ │ │ │ ├── tenant-list.tsx │ │ │ │ └── test │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── edit-modal.test.tsx.snap │ │ │ │ │ └── tenant-list.test.tsx.snap │ │ │ │ │ ├── edit-modal.test.tsx │ │ │ │ │ └── tenant-list.test.tsx │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── expression-modal.test.tsx.snap │ │ │ │ │ ├── get-started.test.tsx.snap │ │ │ │ │ ├── nav-panel.test.tsx.snap │ │ │ │ │ ├── role-list.test.tsx.snap │ │ │ │ │ └── user-list.test.tsx.snap │ │ │ │ ├── expression-modal.test.tsx │ │ │ │ ├── get-started.test.tsx │ │ │ │ ├── nav-panel.test.tsx │ │ │ │ ├── role-list.test.tsx │ │ │ │ └── user-list.test.tsx │ │ │ └── user-list.tsx │ │ ├── test │ │ │ ├── __snapshots__ │ │ │ │ ├── access-error-component.test.tsx.snap │ │ │ │ └── app-router.test.tsx.snap │ │ │ ├── access-error-component.test.tsx │ │ │ ├── app-router.test.tsx │ │ │ └── top-nav-menu.test.tsx │ │ ├── top-nav-menu.tsx │ │ ├── types.ts │ │ ├── ui-constants.tsx │ │ └── utils │ │ │ ├── action-groups-utils.tsx │ │ │ ├── array-state-utils.tsx │ │ │ ├── audit-logging-utils.tsx │ │ │ ├── auth-view-utils.tsx │ │ │ ├── combo-box-utils.tsx │ │ │ ├── context-menu.tsx │ │ │ ├── delete-confirm-modal-utils.tsx │ │ │ ├── display-utils.tsx │ │ │ ├── form-row.tsx │ │ │ ├── index-permission-utils.tsx │ │ │ ├── internal-user-detail-utils.tsx │ │ │ ├── internal-user-list-utils.tsx │ │ │ ├── loading-spinner-utils.tsx │ │ │ ├── name-row.tsx │ │ │ ├── panel-with-header.tsx │ │ │ ├── password-edit-panel.tsx │ │ │ ├── password-strength-bar.tsx │ │ │ ├── request-utils.ts │ │ │ ├── resource-utils.tsx │ │ │ ├── resource-validation-util.tsx │ │ │ ├── role-detail-utils.tsx │ │ │ ├── role-list-utils.tsx │ │ │ ├── role-mapping-utils.tsx │ │ │ ├── storage-utils.tsx │ │ │ ├── tenancy-config_util.tsx │ │ │ ├── tenant-utils.tsx │ │ │ ├── test │ │ │ ├── __snapshots__ │ │ │ │ ├── display-utils.test.tsx.snap │ │ │ │ ├── form-row.test.tsx.snap │ │ │ │ ├── panel-with-header.test.tsx.snap │ │ │ │ ├── password-edit-panel.test.tsx.snap │ │ │ │ └── password-strength-bar.test.tsx.snap │ │ │ ├── action-groups-utils.test.tsx │ │ │ ├── delete-confirm-modal-utils.test.tsx │ │ │ ├── display-utils.test.tsx │ │ │ ├── form-row.test.tsx │ │ │ ├── index-permission-utils.test.tsx │ │ │ ├── internal-user-list-utils.test.tsx │ │ │ ├── name-row.test.tsx │ │ │ ├── panel-with-header.test.tsx │ │ │ ├── password-edit-panel.test.tsx │ │ │ ├── password-strength-bar.test.tsx │ │ │ ├── request-utils.test.ts │ │ │ ├── resource-utils.test.tsx │ │ │ ├── resource-validation-util.test.tsx │ │ │ ├── role-list-utils.test.tsx │ │ │ ├── role-mapping-utils.test.tsx │ │ │ ├── tenant-utils.test.tsx │ │ │ └── toast-utils.test.tsx │ │ │ ├── toast-utils.tsx │ │ │ └── url-builder.tsx │ ├── customerror │ │ ├── _index.scss │ │ ├── custom-error.tsx │ │ └── test │ │ │ ├── __snapshots__ │ │ │ └── custom-error.test.tsx.snap │ │ │ └── custom-error.test.tsx │ ├── error-utils.ts │ ├── login │ │ ├── _index.scss │ │ ├── login-app.tsx │ │ ├── login-page.tsx │ │ └── test │ │ │ ├── __snapshots__ │ │ │ └── login-page.test.tsx.snap │ │ │ └── login-page.test.tsx │ ├── resource-sharing │ │ ├── _index.scss │ │ ├── resource-access-management-app.tsx │ │ ├── resource-sharing-panel.tsx │ │ └── test │ │ │ ├── resource-access-management-app.test.tsx │ │ │ └── resource-sharing-panel.test.tsx │ ├── translation-utils.ts │ └── types.ts ├── assets │ ├── get_started.svg │ ├── get_started_layer_1.svg │ └── get_started_layer_2.svg ├── index.ts ├── plugin.ts ├── services │ ├── chrome_wrapper.ts │ ├── shared-link.ts │ └── test │ │ └── shared-link.test.ts ├── test │ └── plugin.test.ts ├── types.ts └── utils │ ├── auth-info-utils.tsx │ ├── dashboards-info-utils.tsx │ ├── datasource-utils.ts │ ├── login-utils.tsx │ ├── logout-utils.tsx │ ├── password-reset-panel-utils.tsx │ ├── resource-sharing-utils.tsx │ ├── storage-utils.tsx │ └── test │ ├── datasource-utils.test.ts │ └── password-reset-panel-utils.test.ts ├── release-notes ├── opendistro-for-elasticsearch-security-kibana-plugin.release-notes-1.10.1.1.md ├── opendistro-for-elasticsearch-security-kibana-plugin.release-notes-1.10.1.2.md ├── opendistro-for-elasticsearch-security-kibana-plugin.release-notes-1.11.0.0.md ├── opendistro-for-elasticsearch-security-kibana-plugin.release-notes-1.12.0.0.md ├── opendistro-for-elasticsearch-security-kibana-plugin.release-notes-1.13.0.1.md ├── opensearch-dashboards-securityDashboards.release-notes-3.2.0.0.md ├── opensearch-security-dashboards-plugin.release-notes-1.0.0.0-beta1.md ├── opensearch-security-dashboards-plugin.release-notes-1.0.0.0-ga.md ├── opensearch-security-dashboards-plugin.release-notes-1.0.0.0-rc1.md ├── opensearch-security-dashboards-plugin.release-notes-1.0.1.0.md ├── opensearch-security-dashboards-plugin.release-notes-1.1.0.0.md ├── opensearch-security-dashboards-plugin.release-notes-1.2.0.0.md ├── opensearch-security-dashboards-plugin.release-notes-1.3.0.0.md ├── opensearch-security-dashboards-plugin.release-notes-1.3.1.0.md ├── opensearch-security-dashboards-plugin.release-notes-1.3.12.0.md ├── opensearch-security-dashboards-plugin.release-notes-1.3.17.0.md ├── opensearch-security-dashboards-plugin.release-notes-1.3.2.0.md ├── opensearch-security-dashboards-plugin.release-notes-1.3.20.0.md ├── opensearch-security-dashboards-plugin.release-notes-1.3.5.0.md ├── opensearch-security-dashboards-plugin.release-notes-1.3.6.0.md ├── opensearch-security-dashboards-plugin.release-notes-1.3.7.0.md ├── opensearch-security-dashboards-plugin.release-notes-1.3.8.0.md ├── opensearch-security-dashboards-plugin.release-notes-1.3.9.0.md ├── opensearch-security-dashboards-plugin.release-notes-2.0.0.0-rc1.md ├── opensearch-security-dashboards-plugin.release-notes-2.0.0.0.md ├── opensearch-security-dashboards-plugin.release-notes-2.1.0.0.md ├── opensearch-security-dashboards-plugin.release-notes-2.10.0.0.md ├── opensearch-security-dashboards-plugin.release-notes-2.11.0.0.md ├── opensearch-security-dashboards-plugin.release-notes-2.12.0.0.md ├── opensearch-security-dashboards-plugin.release-notes-2.13.0.0.md ├── opensearch-security-dashboards-plugin.release-notes-2.14.0.0.md ├── opensearch-security-dashboards-plugin.release-notes-2.15.0.0.md ├── opensearch-security-dashboards-plugin.release-notes-2.16.0.0.md ├── opensearch-security-dashboards-plugin.release-notes-2.17.0.0.md ├── opensearch-security-dashboards-plugin.release-notes-2.17.1.0.md ├── opensearch-security-dashboards-plugin.release-notes-2.18.0.0.md ├── opensearch-security-dashboards-plugin.release-notes-2.19.0.0.md ├── opensearch-security-dashboards-plugin.release-notes-2.19.2.0.md ├── opensearch-security-dashboards-plugin.release-notes-2.2.0.0.md ├── opensearch-security-dashboards-plugin.release-notes-2.3.0.0.md ├── opensearch-security-dashboards-plugin.release-notes-2.4.0.0.md ├── opensearch-security-dashboards-plugin.release-notes-2.4.1.0.md ├── opensearch-security-dashboards-plugin.release-notes-2.5.0.0.md ├── opensearch-security-dashboards-plugin.release-notes-2.6.0.0.md ├── opensearch-security-dashboards-plugin.release-notes-2.7.0.0.md ├── opensearch-security-dashboards-plugin.release-notes-2.8.0.0.md ├── opensearch-security-dashboards-plugin.release-notes-2.9.0.0.md ├── opensearch-security-dashboards-plugin.release-notes-3.0.0.0-alpha1.md ├── opensearch-security-dashboards-plugin.release-notes-3.0.0.0-beta1.md ├── opensearch-security-dashboards-plugin.release-notes-3.0.0.0.md ├── opensearch-security-dashboards-plugin.release-notes-3.1.0.0.md ├── opensearch-security-dashboards-plugin.release-notes-3.3.0.0.md └── opensearch-security-dashboards-plugin.release-notes-3.4.0.0.md ├── scripts └── build.sh ├── server ├── auth │ ├── auth_handler_factory.test.ts │ ├── auth_handler_factory.ts │ ├── types │ │ ├── authentication_type.test.ts │ │ ├── authentication_type.ts │ │ ├── basic │ │ │ ├── basic_auth.test.ts │ │ │ ├── basic_auth.ts │ │ │ └── routes.ts │ │ ├── index.ts │ │ ├── jwt │ │ │ ├── jwt_auth.ts │ │ │ ├── jwt_helper.test.ts │ │ │ ├── jwt_helper.ts │ │ │ └── routes.ts │ │ ├── multiple │ │ │ ├── multi_auth.test.ts │ │ │ ├── multi_auth.ts │ │ │ └── routes.ts │ │ ├── openid │ │ │ ├── helper.test.ts │ │ │ ├── helper.ts │ │ │ ├── openid_auth.test.ts │ │ │ ├── openid_auth.ts │ │ │ └── routes.ts │ │ ├── proxy │ │ │ ├── proxy_auth.test.ts │ │ │ ├── proxy_auth.ts │ │ │ └── routes.ts │ │ └── saml │ │ │ ├── routes.ts │ │ │ ├── saml_auth.test.ts │ │ │ └── saml_auth.ts │ └── user.ts ├── backend │ ├── opensearch_security_client.ts │ ├── opensearch_security_configuration_plugin.ts │ └── opensearch_security_plugin.ts ├── errors │ ├── index.ts │ ├── no_available_tenant_error.ts │ └── unauthenticated_error.ts ├── index.ts ├── multitenancy │ ├── routes.ts │ ├── tenant_index.ts │ ├── tenant_resolver.test.ts │ ├── tenant_resolver.ts │ └── test │ │ ├── tenant_index.test.ts │ │ └── tenant_resolver.test.ts ├── plugin.ts ├── readonly │ ├── readonly_service.test.ts │ └── readonly_service.ts ├── routes │ ├── auth_type_routes.ts │ ├── index.ts │ └── resource_access_management_routes.ts ├── saved_objects │ └── saved_objects_wrapper.ts ├── session │ ├── cookie_splitter.test.ts │ ├── cookie_splitter.ts │ └── security_cookie.ts ├── types.ts └── utils │ ├── compression.test.ts │ ├── compression.ts │ ├── next_url.test.ts │ ├── next_url.ts │ └── object_properties_defined.ts ├── test ├── certs │ ├── cert.pem │ ├── keyStore.p12 │ └── private-key.pem ├── constant.ts ├── cypress │ ├── e2e │ │ ├── multi-datasources │ │ │ ├── multi_datasources_disabled.spec.js │ │ │ └── multi_datasources_enabled.spec.js │ │ ├── oidc │ │ │ └── oidc_auth_test.spec.js │ │ ├── resource-sharing │ │ │ └── resource_access_management.spec.ts │ │ └── saml │ │ │ └── saml_auth_test.spec.js │ ├── fixtures │ │ └── saml │ │ │ └── samlUserRoleMappiing.json │ └── support │ │ ├── commands.js │ │ ├── constants.js │ │ ├── e2e.js │ │ └── index.d.ts ├── helper │ ├── cookie.ts │ ├── entity_operation.ts │ └── sleep.ts ├── jest.config.server.js ├── jest.config.ui.js ├── jest_integration │ ├── basic_auth.test.ts │ ├── constants.ts │ ├── jwt_auth.test.ts │ ├── jwt_multiauth.test.ts │ ├── multi_tenancy.test.ts │ ├── proxy_multiauth.test.ts │ ├── runIdpServer.js │ └── security_entity_api.test.ts ├── run_jest_tests.js └── setup │ └── after_env.js ├── tsconfig.json ├── whitesource.config └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @cwperks @DarshitChanpura @derek-ho @RyanL1997 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/download-plugin/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.github/actions/download-plugin/action.yml -------------------------------------------------------------------------------- /.github/actions/run-cypress-tests/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.github/actions/run-cypress-tests/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release-notes-drafter-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.github/release-notes-drafter-config.yml -------------------------------------------------------------------------------- /.github/workflows/add-untriaged.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.github/workflows/add-untriaged.yml -------------------------------------------------------------------------------- /.github/workflows/auto-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.github/workflows/auto-release.yml -------------------------------------------------------------------------------- /.github/workflows/backport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.github/workflows/backport.yml -------------------------------------------------------------------------------- /.github/workflows/changelog_verifier.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.github/workflows/changelog_verifier.yml -------------------------------------------------------------------------------- /.github/workflows/cypress-test-multiauth-e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.github/workflows/cypress-test-multiauth-e2e.yml -------------------------------------------------------------------------------- /.github/workflows/cypress-test-multidatasources-disabled-e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.github/workflows/cypress-test-multidatasources-disabled-e2e.yml -------------------------------------------------------------------------------- /.github/workflows/cypress-test-multidatasources-enabled-e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.github/workflows/cypress-test-multidatasources-enabled-e2e.yml -------------------------------------------------------------------------------- /.github/workflows/cypress-test-oidc-e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.github/workflows/cypress-test-oidc-e2e.yml -------------------------------------------------------------------------------- /.github/workflows/cypress-test-resource-sharing-enabled-e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.github/workflows/cypress-test-resource-sharing-enabled-e2e.yml -------------------------------------------------------------------------------- /.github/workflows/cypress-test-saml-e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.github/workflows/cypress-test-saml-e2e.yml -------------------------------------------------------------------------------- /.github/workflows/cypress-test-tenancy-disabled.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.github/workflows/cypress-test-tenancy-disabled.yml -------------------------------------------------------------------------------- /.github/workflows/cypress-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.github/workflows/cypress-test.yml -------------------------------------------------------------------------------- /.github/workflows/delete_backport_branch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.github/workflows/delete_backport_branch.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.github/workflows/dependabot_pr.yml -------------------------------------------------------------------------------- /.github/workflows/integration-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.github/workflows/integration-test.yml -------------------------------------------------------------------------------- /.github/workflows/link-checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.github/workflows/link-checker.yml -------------------------------------------------------------------------------- /.github/workflows/unit-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.github/workflows/unit-test.yml -------------------------------------------------------------------------------- /.github/workflows/verify-binary-installation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.github/workflows/verify-binary-installation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.lycheeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.lycheeignore -------------------------------------------------------------------------------- /.opensearch_dashboards-plugin-helpers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.opensearch_dashboards-plugin-helpers.json -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.prettierrc -------------------------------------------------------------------------------- /.stylelintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.stylelintrc.yml -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/.whitesource -------------------------------------------------------------------------------- /ADMINS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/ADMINS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPER_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/DEVELOPER_GUIDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/RELEASING.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/SECURITY.md -------------------------------------------------------------------------------- /THIRD-PARTY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/THIRD-PARTY -------------------------------------------------------------------------------- /__mocks__/fileMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/__mocks__/fileMock.js -------------------------------------------------------------------------------- /__mocks__/styleMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/__mocks__/styleMock.js -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/babel.config.js -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | codecov: 2 | branch: main 3 | -------------------------------------------------------------------------------- /common/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/common/index.test.ts -------------------------------------------------------------------------------- /common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/common/index.ts -------------------------------------------------------------------------------- /cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/cypress.config.js -------------------------------------------------------------------------------- /opensearch_dashboards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/opensearch_dashboards.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/package.json -------------------------------------------------------------------------------- /public/apps/account/account-app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/account/account-app.tsx -------------------------------------------------------------------------------- /public/apps/account/account-nav-button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/account/account-nav-button.scss -------------------------------------------------------------------------------- /public/apps/account/account-nav-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/account/account-nav-button.tsx -------------------------------------------------------------------------------- /public/apps/account/constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/account/constants.tsx -------------------------------------------------------------------------------- /public/apps/account/log-out-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/account/log-out-button.tsx -------------------------------------------------------------------------------- /public/apps/account/password-reset-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/account/password-reset-panel.tsx -------------------------------------------------------------------------------- /public/apps/account/role-info-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/account/role-info-panel.tsx -------------------------------------------------------------------------------- /public/apps/account/tenant-switch-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/account/tenant-switch-panel.tsx -------------------------------------------------------------------------------- /public/apps/account/test/__snapshots__/account-nav-button.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/account/test/__snapshots__/account-nav-button.test.tsx.snap -------------------------------------------------------------------------------- /public/apps/account/test/__snapshots__/log-out-button.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/account/test/__snapshots__/log-out-button.test.tsx.snap -------------------------------------------------------------------------------- /public/apps/account/test/__snapshots__/role-info-panel.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/account/test/__snapshots__/role-info-panel.test.tsx.snap -------------------------------------------------------------------------------- /public/apps/account/test/__snapshots__/tenant-switch-panel.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/account/test/__snapshots__/tenant-switch-panel.test.tsx.snap -------------------------------------------------------------------------------- /public/apps/account/test/account-app.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/account/test/account-app.test.tsx -------------------------------------------------------------------------------- /public/apps/account/test/account-nav-button.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/account/test/account-nav-button.test.tsx -------------------------------------------------------------------------------- /public/apps/account/test/log-out-button.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/account/test/log-out-button.test.tsx -------------------------------------------------------------------------------- /public/apps/account/test/password-reset-panel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/account/test/password-reset-panel.test.tsx -------------------------------------------------------------------------------- /public/apps/account/test/plugin.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/account/test/plugin.test.tsx -------------------------------------------------------------------------------- /public/apps/account/test/role-info-panel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/account/test/role-info-panel.test.tsx -------------------------------------------------------------------------------- /public/apps/account/test/switch-tenants.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/account/test/switch-tenants.test.tsx -------------------------------------------------------------------------------- /public/apps/account/test/tenant-switch-panel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/account/test/tenant-switch-panel.test.tsx -------------------------------------------------------------------------------- /public/apps/account/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/account/types.ts -------------------------------------------------------------------------------- /public/apps/account/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/account/utils.tsx -------------------------------------------------------------------------------- /public/apps/apps-constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/apps-constants.tsx -------------------------------------------------------------------------------- /public/apps/configuration/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/_index.scss -------------------------------------------------------------------------------- /public/apps/configuration/access-error-component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/access-error-component.tsx -------------------------------------------------------------------------------- /public/apps/configuration/app-router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/app-router.tsx -------------------------------------------------------------------------------- /public/apps/configuration/configuration-app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/configuration-app.tsx -------------------------------------------------------------------------------- /public/apps/configuration/constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/constants.tsx -------------------------------------------------------------------------------- /public/apps/configuration/cross-page-toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/cross-page-toast.tsx -------------------------------------------------------------------------------- /public/apps/configuration/header/header-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/header/header-components.tsx -------------------------------------------------------------------------------- /public/apps/configuration/header/header-props.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/header/header-props.tsx -------------------------------------------------------------------------------- /public/apps/configuration/header/test/header-components.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/header/test/header-components.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/audit-logging/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/audit-logging/_index.scss -------------------------------------------------------------------------------- /public/apps/configuration/panels/audit-logging/audit-logging-edit-settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/audit-logging/audit-logging-edit-settings.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/audit-logging/audit-logging.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/audit-logging/audit-logging.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/audit-logging/code-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/audit-logging/code-editor.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/audit-logging/constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/audit-logging/constants.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/audit-logging/edit-setting-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/audit-logging/edit-setting-group.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/audit-logging/test/__snapshots__/audit-logging.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/audit-logging/test/__snapshots__/audit-logging.test.tsx.snap -------------------------------------------------------------------------------- /public/apps/configuration/panels/audit-logging/test/audit-logging-edit-settings.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/audit-logging/test/audit-logging-edit-settings.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/audit-logging/test/audit-logging.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/audit-logging/test/audit-logging.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/audit-logging/test/code-editor.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/audit-logging/test/code-editor.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/audit-logging/test/edit-setting-group.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/audit-logging/test/edit-setting-group.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/audit-logging/test/view-setting-group.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/audit-logging/test/view-setting-group.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/audit-logging/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/audit-logging/types.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/audit-logging/view-setting-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/audit-logging/view-setting-group.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/auth-view/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/auth-view/_index.scss -------------------------------------------------------------------------------- /public/apps/configuration/panels/auth-view/auth-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/auth-view/auth-view.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/auth-view/authentication-sequence-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/auth-view/authentication-sequence-panel.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/auth-view/authorization-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/auth-view/authorization-panel.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/auth-view/instruction-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/auth-view/instruction-view.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/auth-view/test/__snapshots__/auth-view.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/auth-view/test/__snapshots__/auth-view.test.tsx.snap -------------------------------------------------------------------------------- /public/apps/configuration/panels/auth-view/test/auth-view.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/auth-view/test/auth-view.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/auth-view/test/authentication-sequence-panel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/auth-view/test/authentication-sequence-panel.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/auth-view/test/authorization-panel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/auth-view/test/authorization-panel.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/auth-view/test/instruction-view.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/auth-view/test/instruction-view.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/expression-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/expression-modal.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/get-started.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/get-started.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/internal-user-edit/attribute-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/internal-user-edit/attribute-panel.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/internal-user-edit/backend-role-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/internal-user-edit/backend-role-panel.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/internal-user-edit/internal-user-edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/internal-user-edit/internal-user-edit.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/internal-user-edit/test/__snapshots__/backend-role-panel.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/internal-user-edit/test/__snapshots__/backend-role-panel.test.tsx.snap -------------------------------------------------------------------------------- /public/apps/configuration/panels/internal-user-edit/test/attribute-panel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/internal-user-edit/test/attribute-panel.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/internal-user-edit/test/backend-role-panel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/internal-user-edit/test/backend-role-panel.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/internal-user-edit/test/internal-user-edit.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/internal-user-edit/test/internal-user-edit.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/internal-user-edit/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/internal-user-edit/types.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/nav-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/nav-panel.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/permission-list/edit-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/permission-list/edit-modal.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/permission-list/permission-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/permission-list/permission-list.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/permission-list/test/__snapshots__/permission-list.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/permission-list/test/__snapshots__/permission-list.test.tsx.snap -------------------------------------------------------------------------------- /public/apps/configuration/panels/permission-list/test/edit-modal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/permission-list/test/edit-modal.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/permission-list/test/permission-list.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/permission-list/test/permission-list.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/permission-tree/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/permission-tree/_index.scss -------------------------------------------------------------------------------- /public/apps/configuration/panels/permission-tree/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/permission-tree/index.ts -------------------------------------------------------------------------------- /public/apps/configuration/panels/permission-tree/permission-tree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/permission-tree/permission-tree.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/permission-tree/test/__snapshots__/permission-tree.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/permission-tree/test/__snapshots__/permission-tree.test.tsx.snap -------------------------------------------------------------------------------- /public/apps/configuration/panels/permission-tree/test/permission-tree.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/permission-tree/test/permission-tree.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/role-edit/cluster-permission-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/role-edit/cluster-permission-panel.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/role-edit/index-permission-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/role-edit/index-permission-panel.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/role-edit/role-edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/role-edit/role-edit.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/role-edit/tenant-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/role-edit/tenant-panel.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/role-edit/test/cluster-permission-panel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/role-edit/test/cluster-permission-panel.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/role-edit/test/index-permission-panel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/role-edit/test/index-permission-panel.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/role-edit/test/role-edit-filtering.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/role-edit/test/role-edit-filtering.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/role-edit/test/role-edit.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/role-edit/test/role-edit.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/role-edit/test/tenant-panel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/role-edit/test/tenant-panel.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/role-edit/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/role-edit/types.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/role-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/role-list.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/role-mapping/external-identities-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/role-mapping/external-identities-panel.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/role-mapping/role-edit-mapped-user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/role-mapping/role-edit-mapped-user.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/role-mapping/test/external-identities-panel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/role-mapping/test/external-identities-panel.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/role-mapping/test/role-edit-mapped-user.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/role-mapping/test/role-edit-mapped-user.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/role-mapping/test/users-panel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/role-mapping/test/users-panel.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/role-mapping/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/role-mapping/types.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/role-mapping/users-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/role-mapping/users-panel.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/role-view/cluster-permission-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/role-view/cluster-permission-panel.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/role-view/index-permission-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/role-view/index-permission-panel.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/role-view/role-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/role-view/role-view.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/role-view/tenants-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/role-view/tenants-panel.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/role-view/test/__snapshots__/index-permission-panel.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/role-view/test/__snapshots__/index-permission-panel.test.tsx.snap -------------------------------------------------------------------------------- /public/apps/configuration/panels/role-view/test/__snapshots__/role-view.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/role-view/test/__snapshots__/role-view.test.tsx.snap -------------------------------------------------------------------------------- /public/apps/configuration/panels/role-view/test/__snapshots__/tenants-panel.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/role-view/test/__snapshots__/tenants-panel.test.tsx.snap -------------------------------------------------------------------------------- /public/apps/configuration/panels/role-view/test/cluster-permission-panel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/role-view/test/cluster-permission-panel.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/role-view/test/index-permission-panel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/role-view/test/index-permission-panel.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/role-view/test/role-view.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/role-view/test/role-view.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/role-view/test/tenants-panel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/role-view/test/tenants-panel.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/tenancy-config/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/tenancy-config/types.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/tenant-list/configure_tab1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/tenant-list/configure_tab1.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/tenant-list/edit-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/tenant-list/edit-modal.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/tenant-list/manage_tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/tenant-list/manage_tab.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/tenant-list/save_changes_modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/tenant-list/save_changes_modal.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/tenant-list/tenant-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/tenant-list/tenant-list.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/tenant-list/test/__snapshots__/edit-modal.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/tenant-list/test/__snapshots__/edit-modal.test.tsx.snap -------------------------------------------------------------------------------- /public/apps/configuration/panels/tenant-list/test/__snapshots__/tenant-list.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/tenant-list/test/__snapshots__/tenant-list.test.tsx.snap -------------------------------------------------------------------------------- /public/apps/configuration/panels/tenant-list/test/edit-modal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/tenant-list/test/edit-modal.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/tenant-list/test/tenant-list.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/tenant-list/test/tenant-list.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/test/__snapshots__/expression-modal.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/test/__snapshots__/expression-modal.test.tsx.snap -------------------------------------------------------------------------------- /public/apps/configuration/panels/test/__snapshots__/get-started.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/test/__snapshots__/get-started.test.tsx.snap -------------------------------------------------------------------------------- /public/apps/configuration/panels/test/__snapshots__/nav-panel.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/test/__snapshots__/nav-panel.test.tsx.snap -------------------------------------------------------------------------------- /public/apps/configuration/panels/test/__snapshots__/role-list.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/test/__snapshots__/role-list.test.tsx.snap -------------------------------------------------------------------------------- /public/apps/configuration/panels/test/__snapshots__/user-list.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/test/__snapshots__/user-list.test.tsx.snap -------------------------------------------------------------------------------- /public/apps/configuration/panels/test/expression-modal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/test/expression-modal.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/test/get-started.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/test/get-started.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/test/nav-panel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/test/nav-panel.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/test/role-list.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/test/role-list.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/test/user-list.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/test/user-list.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/panels/user-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/panels/user-list.tsx -------------------------------------------------------------------------------- /public/apps/configuration/test/__snapshots__/access-error-component.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/test/__snapshots__/access-error-component.test.tsx.snap -------------------------------------------------------------------------------- /public/apps/configuration/test/__snapshots__/app-router.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/test/__snapshots__/app-router.test.tsx.snap -------------------------------------------------------------------------------- /public/apps/configuration/test/access-error-component.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/test/access-error-component.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/test/app-router.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/test/app-router.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/test/top-nav-menu.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/test/top-nav-menu.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/top-nav-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/top-nav-menu.tsx -------------------------------------------------------------------------------- /public/apps/configuration/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/types.ts -------------------------------------------------------------------------------- /public/apps/configuration/ui-constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/ui-constants.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/action-groups-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/action-groups-utils.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/array-state-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/array-state-utils.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/audit-logging-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/audit-logging-utils.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/auth-view-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/auth-view-utils.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/combo-box-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/combo-box-utils.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/context-menu.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/delete-confirm-modal-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/delete-confirm-modal-utils.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/display-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/display-utils.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/form-row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/form-row.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/index-permission-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/index-permission-utils.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/internal-user-detail-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/internal-user-detail-utils.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/internal-user-list-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/internal-user-list-utils.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/loading-spinner-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/loading-spinner-utils.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/name-row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/name-row.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/panel-with-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/panel-with-header.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/password-edit-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/password-edit-panel.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/password-strength-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/password-strength-bar.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/request-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/request-utils.ts -------------------------------------------------------------------------------- /public/apps/configuration/utils/resource-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/resource-utils.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/resource-validation-util.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/resource-validation-util.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/role-detail-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/role-detail-utils.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/role-list-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/role-list-utils.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/role-mapping-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/role-mapping-utils.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/storage-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/storage-utils.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/tenancy-config_util.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/tenancy-config_util.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/tenant-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/tenant-utils.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/test/__snapshots__/display-utils.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/test/__snapshots__/display-utils.test.tsx.snap -------------------------------------------------------------------------------- /public/apps/configuration/utils/test/__snapshots__/form-row.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/test/__snapshots__/form-row.test.tsx.snap -------------------------------------------------------------------------------- /public/apps/configuration/utils/test/__snapshots__/panel-with-header.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/test/__snapshots__/panel-with-header.test.tsx.snap -------------------------------------------------------------------------------- /public/apps/configuration/utils/test/__snapshots__/password-edit-panel.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/test/__snapshots__/password-edit-panel.test.tsx.snap -------------------------------------------------------------------------------- /public/apps/configuration/utils/test/__snapshots__/password-strength-bar.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/test/__snapshots__/password-strength-bar.test.tsx.snap -------------------------------------------------------------------------------- /public/apps/configuration/utils/test/action-groups-utils.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/test/action-groups-utils.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/test/delete-confirm-modal-utils.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/test/delete-confirm-modal-utils.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/test/display-utils.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/test/display-utils.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/test/form-row.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/test/form-row.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/test/index-permission-utils.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/test/index-permission-utils.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/test/internal-user-list-utils.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/test/internal-user-list-utils.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/test/name-row.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/test/name-row.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/test/panel-with-header.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/test/panel-with-header.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/test/password-edit-panel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/test/password-edit-panel.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/test/password-strength-bar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/test/password-strength-bar.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/test/request-utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/test/request-utils.test.ts -------------------------------------------------------------------------------- /public/apps/configuration/utils/test/resource-utils.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/test/resource-utils.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/test/resource-validation-util.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/test/resource-validation-util.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/test/role-list-utils.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/test/role-list-utils.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/test/role-mapping-utils.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/test/role-mapping-utils.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/test/tenant-utils.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/test/tenant-utils.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/test/toast-utils.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/test/toast-utils.test.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/toast-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/toast-utils.tsx -------------------------------------------------------------------------------- /public/apps/configuration/utils/url-builder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/configuration/utils/url-builder.tsx -------------------------------------------------------------------------------- /public/apps/customerror/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/customerror/_index.scss -------------------------------------------------------------------------------- /public/apps/customerror/custom-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/customerror/custom-error.tsx -------------------------------------------------------------------------------- /public/apps/customerror/test/__snapshots__/custom-error.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/customerror/test/__snapshots__/custom-error.test.tsx.snap -------------------------------------------------------------------------------- /public/apps/customerror/test/custom-error.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/customerror/test/custom-error.test.tsx -------------------------------------------------------------------------------- /public/apps/error-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/error-utils.ts -------------------------------------------------------------------------------- /public/apps/login/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/login/_index.scss -------------------------------------------------------------------------------- /public/apps/login/login-app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/login/login-app.tsx -------------------------------------------------------------------------------- /public/apps/login/login-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/login/login-page.tsx -------------------------------------------------------------------------------- /public/apps/login/test/__snapshots__/login-page.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/login/test/__snapshots__/login-page.test.tsx.snap -------------------------------------------------------------------------------- /public/apps/login/test/login-page.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/login/test/login-page.test.tsx -------------------------------------------------------------------------------- /public/apps/resource-sharing/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/resource-sharing/_index.scss -------------------------------------------------------------------------------- /public/apps/resource-sharing/resource-access-management-app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/resource-sharing/resource-access-management-app.tsx -------------------------------------------------------------------------------- /public/apps/resource-sharing/resource-sharing-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/resource-sharing/resource-sharing-panel.tsx -------------------------------------------------------------------------------- /public/apps/resource-sharing/test/resource-access-management-app.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/resource-sharing/test/resource-access-management-app.test.tsx -------------------------------------------------------------------------------- /public/apps/resource-sharing/test/resource-sharing-panel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/resource-sharing/test/resource-sharing-panel.test.tsx -------------------------------------------------------------------------------- /public/apps/translation-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/translation-utils.ts -------------------------------------------------------------------------------- /public/apps/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/apps/types.ts -------------------------------------------------------------------------------- /public/assets/get_started.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/assets/get_started.svg -------------------------------------------------------------------------------- /public/assets/get_started_layer_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/assets/get_started_layer_1.svg -------------------------------------------------------------------------------- /public/assets/get_started_layer_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/assets/get_started_layer_2.svg -------------------------------------------------------------------------------- /public/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/index.ts -------------------------------------------------------------------------------- /public/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/plugin.ts -------------------------------------------------------------------------------- /public/services/chrome_wrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/services/chrome_wrapper.ts -------------------------------------------------------------------------------- /public/services/shared-link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/services/shared-link.ts -------------------------------------------------------------------------------- /public/services/test/shared-link.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/services/test/shared-link.test.ts -------------------------------------------------------------------------------- /public/test/plugin.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/test/plugin.test.ts -------------------------------------------------------------------------------- /public/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/types.ts -------------------------------------------------------------------------------- /public/utils/auth-info-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/utils/auth-info-utils.tsx -------------------------------------------------------------------------------- /public/utils/dashboards-info-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/utils/dashboards-info-utils.tsx -------------------------------------------------------------------------------- /public/utils/datasource-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/utils/datasource-utils.ts -------------------------------------------------------------------------------- /public/utils/login-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/utils/login-utils.tsx -------------------------------------------------------------------------------- /public/utils/logout-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/utils/logout-utils.tsx -------------------------------------------------------------------------------- /public/utils/password-reset-panel-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/utils/password-reset-panel-utils.tsx -------------------------------------------------------------------------------- /public/utils/resource-sharing-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/utils/resource-sharing-utils.tsx -------------------------------------------------------------------------------- /public/utils/storage-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/utils/storage-utils.tsx -------------------------------------------------------------------------------- /public/utils/test/datasource-utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/utils/test/datasource-utils.test.ts -------------------------------------------------------------------------------- /public/utils/test/password-reset-panel-utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/public/utils/test/password-reset-panel-utils.test.ts -------------------------------------------------------------------------------- /release-notes/opendistro-for-elasticsearch-security-kibana-plugin.release-notes-1.10.1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opendistro-for-elasticsearch-security-kibana-plugin.release-notes-1.10.1.1.md -------------------------------------------------------------------------------- /release-notes/opendistro-for-elasticsearch-security-kibana-plugin.release-notes-1.10.1.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opendistro-for-elasticsearch-security-kibana-plugin.release-notes-1.10.1.2.md -------------------------------------------------------------------------------- /release-notes/opendistro-for-elasticsearch-security-kibana-plugin.release-notes-1.11.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opendistro-for-elasticsearch-security-kibana-plugin.release-notes-1.11.0.0.md -------------------------------------------------------------------------------- /release-notes/opendistro-for-elasticsearch-security-kibana-plugin.release-notes-1.12.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opendistro-for-elasticsearch-security-kibana-plugin.release-notes-1.12.0.0.md -------------------------------------------------------------------------------- /release-notes/opendistro-for-elasticsearch-security-kibana-plugin.release-notes-1.13.0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opendistro-for-elasticsearch-security-kibana-plugin.release-notes-1.13.0.1.md -------------------------------------------------------------------------------- /release-notes/opensearch-dashboards-securityDashboards.release-notes-3.2.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-dashboards-securityDashboards.release-notes-3.2.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-1.0.0.0-beta1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-1.0.0.0-beta1.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-1.0.0.0-ga.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-1.0.0.0-ga.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-1.0.0.0-rc1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-1.0.0.0-rc1.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-1.0.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-1.0.1.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-1.1.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-1.1.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-1.2.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-1.2.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-1.3.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-1.3.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-1.3.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-1.3.1.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-1.3.12.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-1.3.12.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-1.3.17.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-1.3.17.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-1.3.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-1.3.2.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-1.3.20.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-1.3.20.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-1.3.5.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-1.3.5.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-1.3.6.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-1.3.6.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-1.3.7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-1.3.7.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-1.3.8.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-1.3.8.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-1.3.9.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-1.3.9.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-2.0.0.0-rc1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-2.0.0.0-rc1.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-2.0.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-2.0.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-2.1.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-2.1.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-2.10.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-2.10.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-2.11.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-2.11.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-2.12.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-2.12.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-2.13.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-2.13.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-2.14.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-2.14.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-2.15.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-2.15.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-2.16.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-2.16.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-2.17.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-2.17.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-2.17.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-2.17.1.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-2.18.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-2.18.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-2.19.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-2.19.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-2.19.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-2.19.2.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-2.2.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-2.2.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-2.3.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-2.3.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-2.4.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-2.4.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-2.4.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-2.4.1.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-2.5.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-2.5.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-2.6.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-2.6.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-2.7.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-2.7.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-2.8.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-2.8.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-2.9.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-2.9.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-3.0.0.0-alpha1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-3.0.0.0-alpha1.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-3.0.0.0-beta1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-3.0.0.0-beta1.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-3.0.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-3.0.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-3.1.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-3.1.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-3.3.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-3.3.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-dashboards-plugin.release-notes-3.4.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/release-notes/opensearch-security-dashboards-plugin.release-notes-3.4.0.0.md -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /server/auth/auth_handler_factory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/auth/auth_handler_factory.test.ts -------------------------------------------------------------------------------- /server/auth/auth_handler_factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/auth/auth_handler_factory.ts -------------------------------------------------------------------------------- /server/auth/types/authentication_type.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/auth/types/authentication_type.test.ts -------------------------------------------------------------------------------- /server/auth/types/authentication_type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/auth/types/authentication_type.ts -------------------------------------------------------------------------------- /server/auth/types/basic/basic_auth.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/auth/types/basic/basic_auth.test.ts -------------------------------------------------------------------------------- /server/auth/types/basic/basic_auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/auth/types/basic/basic_auth.ts -------------------------------------------------------------------------------- /server/auth/types/basic/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/auth/types/basic/routes.ts -------------------------------------------------------------------------------- /server/auth/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/auth/types/index.ts -------------------------------------------------------------------------------- /server/auth/types/jwt/jwt_auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/auth/types/jwt/jwt_auth.ts -------------------------------------------------------------------------------- /server/auth/types/jwt/jwt_helper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/auth/types/jwt/jwt_helper.test.ts -------------------------------------------------------------------------------- /server/auth/types/jwt/jwt_helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/auth/types/jwt/jwt_helper.ts -------------------------------------------------------------------------------- /server/auth/types/jwt/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/auth/types/jwt/routes.ts -------------------------------------------------------------------------------- /server/auth/types/multiple/multi_auth.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/auth/types/multiple/multi_auth.test.ts -------------------------------------------------------------------------------- /server/auth/types/multiple/multi_auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/auth/types/multiple/multi_auth.ts -------------------------------------------------------------------------------- /server/auth/types/multiple/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/auth/types/multiple/routes.ts -------------------------------------------------------------------------------- /server/auth/types/openid/helper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/auth/types/openid/helper.test.ts -------------------------------------------------------------------------------- /server/auth/types/openid/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/auth/types/openid/helper.ts -------------------------------------------------------------------------------- /server/auth/types/openid/openid_auth.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/auth/types/openid/openid_auth.test.ts -------------------------------------------------------------------------------- /server/auth/types/openid/openid_auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/auth/types/openid/openid_auth.ts -------------------------------------------------------------------------------- /server/auth/types/openid/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/auth/types/openid/routes.ts -------------------------------------------------------------------------------- /server/auth/types/proxy/proxy_auth.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/auth/types/proxy/proxy_auth.test.ts -------------------------------------------------------------------------------- /server/auth/types/proxy/proxy_auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/auth/types/proxy/proxy_auth.ts -------------------------------------------------------------------------------- /server/auth/types/proxy/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/auth/types/proxy/routes.ts -------------------------------------------------------------------------------- /server/auth/types/saml/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/auth/types/saml/routes.ts -------------------------------------------------------------------------------- /server/auth/types/saml/saml_auth.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/auth/types/saml/saml_auth.test.ts -------------------------------------------------------------------------------- /server/auth/types/saml/saml_auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/auth/types/saml/saml_auth.ts -------------------------------------------------------------------------------- /server/auth/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/auth/user.ts -------------------------------------------------------------------------------- /server/backend/opensearch_security_client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/backend/opensearch_security_client.ts -------------------------------------------------------------------------------- /server/backend/opensearch_security_configuration_plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/backend/opensearch_security_configuration_plugin.ts -------------------------------------------------------------------------------- /server/backend/opensearch_security_plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/backend/opensearch_security_plugin.ts -------------------------------------------------------------------------------- /server/errors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/errors/index.ts -------------------------------------------------------------------------------- /server/errors/no_available_tenant_error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/errors/no_available_tenant_error.ts -------------------------------------------------------------------------------- /server/errors/unauthenticated_error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/errors/unauthenticated_error.ts -------------------------------------------------------------------------------- /server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/index.ts -------------------------------------------------------------------------------- /server/multitenancy/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/multitenancy/routes.ts -------------------------------------------------------------------------------- /server/multitenancy/tenant_index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/multitenancy/tenant_index.ts -------------------------------------------------------------------------------- /server/multitenancy/tenant_resolver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/multitenancy/tenant_resolver.test.ts -------------------------------------------------------------------------------- /server/multitenancy/tenant_resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/multitenancy/tenant_resolver.ts -------------------------------------------------------------------------------- /server/multitenancy/test/tenant_index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/multitenancy/test/tenant_index.test.ts -------------------------------------------------------------------------------- /server/multitenancy/test/tenant_resolver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/multitenancy/test/tenant_resolver.test.ts -------------------------------------------------------------------------------- /server/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/plugin.ts -------------------------------------------------------------------------------- /server/readonly/readonly_service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/readonly/readonly_service.test.ts -------------------------------------------------------------------------------- /server/readonly/readonly_service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/readonly/readonly_service.ts -------------------------------------------------------------------------------- /server/routes/auth_type_routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/routes/auth_type_routes.ts -------------------------------------------------------------------------------- /server/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/routes/index.ts -------------------------------------------------------------------------------- /server/routes/resource_access_management_routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/routes/resource_access_management_routes.ts -------------------------------------------------------------------------------- /server/saved_objects/saved_objects_wrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/saved_objects/saved_objects_wrapper.ts -------------------------------------------------------------------------------- /server/session/cookie_splitter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/session/cookie_splitter.test.ts -------------------------------------------------------------------------------- /server/session/cookie_splitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/session/cookie_splitter.ts -------------------------------------------------------------------------------- /server/session/security_cookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/session/security_cookie.ts -------------------------------------------------------------------------------- /server/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/types.ts -------------------------------------------------------------------------------- /server/utils/compression.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/utils/compression.test.ts -------------------------------------------------------------------------------- /server/utils/compression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/utils/compression.ts -------------------------------------------------------------------------------- /server/utils/next_url.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/utils/next_url.test.ts -------------------------------------------------------------------------------- /server/utils/next_url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/utils/next_url.ts -------------------------------------------------------------------------------- /server/utils/object_properties_defined.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/server/utils/object_properties_defined.ts -------------------------------------------------------------------------------- /test/certs/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/test/certs/cert.pem -------------------------------------------------------------------------------- /test/certs/keyStore.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/test/certs/keyStore.p12 -------------------------------------------------------------------------------- /test/certs/private-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/test/certs/private-key.pem -------------------------------------------------------------------------------- /test/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/test/constant.ts -------------------------------------------------------------------------------- /test/cypress/e2e/multi-datasources/multi_datasources_disabled.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/test/cypress/e2e/multi-datasources/multi_datasources_disabled.spec.js -------------------------------------------------------------------------------- /test/cypress/e2e/multi-datasources/multi_datasources_enabled.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/test/cypress/e2e/multi-datasources/multi_datasources_enabled.spec.js -------------------------------------------------------------------------------- /test/cypress/e2e/oidc/oidc_auth_test.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/test/cypress/e2e/oidc/oidc_auth_test.spec.js -------------------------------------------------------------------------------- /test/cypress/e2e/resource-sharing/resource_access_management.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/test/cypress/e2e/resource-sharing/resource_access_management.spec.ts -------------------------------------------------------------------------------- /test/cypress/e2e/saml/saml_auth_test.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/test/cypress/e2e/saml/saml_auth_test.spec.js -------------------------------------------------------------------------------- /test/cypress/fixtures/saml/samlUserRoleMappiing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/test/cypress/fixtures/saml/samlUserRoleMappiing.json -------------------------------------------------------------------------------- /test/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/test/cypress/support/commands.js -------------------------------------------------------------------------------- /test/cypress/support/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/test/cypress/support/constants.js -------------------------------------------------------------------------------- /test/cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/test/cypress/support/e2e.js -------------------------------------------------------------------------------- /test/cypress/support/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/test/cypress/support/index.d.ts -------------------------------------------------------------------------------- /test/helper/cookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/test/helper/cookie.ts -------------------------------------------------------------------------------- /test/helper/entity_operation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/test/helper/entity_operation.ts -------------------------------------------------------------------------------- /test/helper/sleep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/test/helper/sleep.ts -------------------------------------------------------------------------------- /test/jest.config.server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/test/jest.config.server.js -------------------------------------------------------------------------------- /test/jest.config.ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/test/jest.config.ui.js -------------------------------------------------------------------------------- /test/jest_integration/basic_auth.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/test/jest_integration/basic_auth.test.ts -------------------------------------------------------------------------------- /test/jest_integration/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/test/jest_integration/constants.ts -------------------------------------------------------------------------------- /test/jest_integration/jwt_auth.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/test/jest_integration/jwt_auth.test.ts -------------------------------------------------------------------------------- /test/jest_integration/jwt_multiauth.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/test/jest_integration/jwt_multiauth.test.ts -------------------------------------------------------------------------------- /test/jest_integration/multi_tenancy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/test/jest_integration/multi_tenancy.test.ts -------------------------------------------------------------------------------- /test/jest_integration/proxy_multiauth.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/test/jest_integration/proxy_multiauth.test.ts -------------------------------------------------------------------------------- /test/jest_integration/runIdpServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/test/jest_integration/runIdpServer.js -------------------------------------------------------------------------------- /test/jest_integration/security_entity_api.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/test/jest_integration/security_entity_api.test.ts -------------------------------------------------------------------------------- /test/run_jest_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/test/run_jest_tests.js -------------------------------------------------------------------------------- /test/setup/after_env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/test/setup/after_env.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /whitesource.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/whitesource.config -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-dashboards-plugin/HEAD/yarn.lock --------------------------------------------------------------------------------