├── .ci ├── oci-dashboard-happy-path.sh ├── oci-dashboard-puppeteer.sh ├── openshift-ci │ └── Dockerfile └── resources │ ├── cluster-oauth-patch.json │ ├── dashboard-pod.yaml │ ├── pod-che-smoke-test.yaml │ └── users.htpasswd ├── .config └── copyright.js ├── .deps ├── EXCLUDED │ ├── dev.md │ └── prod.md ├── dev.md └── prod.md ├── .editorconfig ├── .eslintrc.js ├── .gitattributes ├── .github ├── CODEOWNERS ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── codecov.yml │ ├── next-build-multiarch.yml │ ├── pr.yml │ ├── release.yml │ └── try-in-web-ide.yaml ├── .gitignore ├── .prettierrc ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── .yarn └── releases │ └── yarn-4.9.0.cjs ├── .yarnrc.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── che-dashboard.code-workspace ├── codecov.yml ├── devfile.yaml ├── jest.config.base.js ├── jest.config.js ├── k8s ├── devspaces.yaml └── eclipse-che.yaml ├── make-release.sh ├── package.json ├── packages ├── common │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ └── index.spec.ts │ │ ├── dto │ │ │ ├── api │ │ │ │ ├── __tests__ │ │ │ │ │ └── webSocket.spec.ts │ │ │ │ ├── index.ts │ │ │ │ └── webSocket.ts │ │ │ ├── cluster-config.ts │ │ │ └── cluster-info.ts │ │ ├── helpers │ │ │ ├── __tests__ │ │ │ │ ├── errors.spec.ts │ │ │ │ ├── index.spec.ts │ │ │ │ └── sanitize.spec.ts │ │ │ ├── errors.ts │ │ │ ├── index.ts │ │ │ └── sanitize.ts │ │ └── index.ts │ └── tsconfig.json ├── dashboard-backend │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── .npmignore │ ├── .prettierrc │ ├── .vscode │ │ └── settings.json │ ├── jest.config.js │ ├── jest.setup.js │ ├── package.json │ ├── src │ │ ├── __mocks__ │ │ │ └── args.ts │ │ ├── __tests__ │ │ │ └── app.spec.ts │ │ ├── app.ts │ │ ├── constants │ │ │ ├── config.ts │ │ │ ├── examples.ts │ │ │ ├── schemas.ts │ │ │ └── server-config.ts │ │ ├── devworkspaceClient │ │ │ ├── __mocks__ │ │ │ │ └── index.ts │ │ │ ├── __tests__ │ │ │ │ ├── fixtures │ │ │ │ │ ├── sample-devfile-plugins.yaml │ │ │ │ │ ├── sample-devworkspace.yaml │ │ │ │ │ └── sample-dwt.yaml │ │ │ │ └── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── services │ │ │ │ ├── __tests__ │ │ │ │ │ ├── airGapSamplesApi.spec.ts │ │ │ │ │ ├── devWorkspaceApi.spec.ts │ │ │ │ │ ├── devWorkspaceClusterApi.spec.ts │ │ │ │ │ ├── devWorkspaceTemplateApi.spec.ts │ │ │ │ │ ├── dockerConfigApi.spec.ts │ │ │ │ │ ├── editorsApi.spec.ts │ │ │ │ │ ├── eventApi.spec.ts │ │ │ │ │ ├── fixtures │ │ │ │ │ │ ├── air-gap │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ ├── sample-devfile.yaml │ │ │ │ │ │ │ └── sample-project.zip │ │ │ │ │ │ ├── kubeconfig.yaml │ │ │ │ │ │ ├── merged_kubeconfig.yaml │ │ │ │ │ │ └── mounted_kubeconfig.yaml │ │ │ │ │ ├── gettingStartedSamplesApi.spec.ts │ │ │ │ │ ├── kubeConfigApi.spec.ts │ │ │ │ │ ├── podApi.spec.ts │ │ │ │ │ ├── podmanApi.spec.ts │ │ │ │ │ ├── serverConfigApi.spec.ts │ │ │ │ │ ├── userProfileApi.spec.ts │ │ │ │ │ └── workspacePreferencesApi.spec.ts │ │ │ │ ├── airGapSampleApi.ts │ │ │ │ ├── devWorkspaceApi.ts │ │ │ │ ├── devWorkspaceClusterApiService.ts │ │ │ │ ├── devWorkspaceTemplateApi.ts │ │ │ │ ├── dockerConfigApi.ts │ │ │ │ ├── editorsApi.ts │ │ │ │ ├── eventApi.ts │ │ │ │ ├── gettingStartedSamplesApi.ts │ │ │ │ ├── gitConfigApi │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── helpers │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ ├── prepareCustomObjectWatch.ts │ │ │ │ │ │ └── retryableExec.ts │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── retryableExec.spec.ts │ │ │ │ │ ├── createError.ts │ │ │ │ │ ├── exec.ts │ │ │ │ │ ├── getSampleIcon.ts │ │ │ │ │ ├── prepareCoreV1API.ts │ │ │ │ │ ├── prepareCustomObjectAPI.ts │ │ │ │ │ ├── prepareCustomObjectWatch.ts │ │ │ │ │ └── retryableExec.ts │ │ │ │ ├── kubeConfigApi.ts │ │ │ │ ├── logsApi │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── logsApi.retry1.spec.ts │ │ │ │ │ │ ├── logsApi.retry2.spec.ts │ │ │ │ │ │ └── logsApi.spec.ts │ │ │ │ │ ├── const.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── personalAccessTokenApi │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── helpers.spec.ts │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ ├── helpers.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── podApi.ts │ │ │ │ ├── podmanApi.ts │ │ │ │ ├── serverConfigApi.ts │ │ │ │ ├── sshKeysApi │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── helpers.spec.ts │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ ├── helpers.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── userProfileApi.ts │ │ │ │ └── workspacePreferencesApi.ts │ │ │ └── types │ │ │ │ └── index.ts │ │ ├── helpers │ │ │ ├── __mocks__ │ │ │ │ └── getUserName.ts │ │ │ ├── __tests__ │ │ │ │ └── getUserName.spec.ts │ │ │ ├── findApi.ts │ │ │ ├── getUserName.ts │ │ │ ├── parseArgs.ts │ │ │ └── typeguards.ts │ │ ├── localRun │ │ │ ├── hooks │ │ │ │ ├── authenticateApiRequests.ts │ │ │ │ ├── authorizationHooks.ts │ │ │ │ └── stubCheServerOptionsRequests.ts │ │ │ ├── index.ts │ │ │ ├── plugins │ │ │ │ └── oauth2.ts │ │ │ ├── proxies │ │ │ │ ├── cheServerApi.ts │ │ │ │ └── dexProxies.ts │ │ │ └── routes │ │ │ │ ├── dexCallback.ts │ │ │ │ └── signOut.ts │ │ ├── models │ │ │ ├── __tests__ │ │ │ │ ├── index.spec.ts │ │ │ │ └── restParams.spec.ts │ │ │ ├── index.ts │ │ │ └── restParams.ts │ │ ├── plugins │ │ │ ├── cors.ts │ │ │ ├── staticServer.ts │ │ │ ├── swagger.ts │ │ │ └── webSocket.ts │ │ ├── routes │ │ │ ├── __tests__ │ │ │ │ └── factoryAcceptanceRedirect.spec.ts │ │ │ ├── api │ │ │ │ ├── __tests__ │ │ │ │ │ ├── airGapSample.spec.ts │ │ │ │ │ ├── clusterConfig.spec.ts │ │ │ │ │ ├── clusterInfo.spec.ts │ │ │ │ │ ├── dataResolver.spec.ts │ │ │ │ │ ├── devworkspaceCluster.spec.ts │ │ │ │ │ ├── devworkspaceTemplates.spec.ts │ │ │ │ │ ├── devworkspaces.spec.ts │ │ │ │ │ ├── dockerConfig.spec.ts │ │ │ │ │ ├── editors.spec.ts │ │ │ │ │ ├── events.spec.ts │ │ │ │ │ ├── gitConfig.spec.ts │ │ │ │ │ ├── kubeConfig.spec.ts │ │ │ │ │ ├── personalAccessToken.spec.ts │ │ │ │ │ ├── pods.spec.ts │ │ │ │ │ ├── serverConfig.spec.ts │ │ │ │ │ ├── sshKeys.spec.ts │ │ │ │ │ ├── userProfile.spec.ts │ │ │ │ │ └── workspacePreferences.spec.ts │ │ │ │ ├── airGapSample.ts │ │ │ │ ├── clusterConfig.ts │ │ │ │ ├── clusterInfo.ts │ │ │ │ ├── dataResolver.ts │ │ │ │ ├── devworkspaceCluster.ts │ │ │ │ ├── devworkspaceResources.ts │ │ │ │ ├── devworkspaceTemplates.ts │ │ │ │ ├── devworkspaces.ts │ │ │ │ ├── dockerConfig.ts │ │ │ │ ├── editors.ts │ │ │ │ ├── events.ts │ │ │ │ ├── gettingStartedSample.ts │ │ │ │ ├── gitConfig.ts │ │ │ │ ├── helpers │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ ├── getDevWorkspaceClient.ts │ │ │ │ │ │ ├── getServiceAccountToken.ts │ │ │ │ │ │ └── getToken.ts │ │ │ │ │ ├── getCertificateAuthority.ts │ │ │ │ │ ├── getDevWorkspaceClient.ts │ │ │ │ │ ├── getServiceAccountToken.ts │ │ │ │ │ └── getToken.ts │ │ │ │ ├── kubeConfig.ts │ │ │ │ ├── personalAccessToken.ts │ │ │ │ ├── podmanLogin.ts │ │ │ │ ├── pods.ts │ │ │ │ ├── serverConfig.ts │ │ │ │ ├── sshKeys.ts │ │ │ │ ├── userProfile.ts │ │ │ │ ├── websocket.ts │ │ │ │ └── workspacePreferences.ts │ │ │ ├── factoryAcceptanceRedirect.ts │ │ │ └── workspaceRedirect.ts │ │ ├── server.ts │ │ ├── services │ │ │ ├── ObjectsWatcher.ts │ │ │ ├── SubscriptionManager.ts │ │ │ ├── __tests__ │ │ │ │ ├── ObjectsWatcher.spec.ts │ │ │ │ ├── SubscriptionManager.spec.ts │ │ │ │ └── helpers.spec.ts │ │ │ ├── helpers.ts │ │ │ ├── kubeclient │ │ │ │ ├── __mocks__ │ │ │ │ │ └── kubeConfigProvider.ts │ │ │ │ ├── __tests__ │ │ │ │ │ ├── dwClientProvider.spec.ts │ │ │ │ │ └── kubeConfigProvider.spec.ts │ │ │ │ ├── dwClientProvider.ts │ │ │ │ ├── helpers │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ └── index.ts │ │ │ │ └── kubeConfigProvider.ts │ │ │ ├── logWatcher │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.ts │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.ts │ │ │ │ └── index.ts │ │ │ └── types │ │ │ │ ├── Observer.ts │ │ │ │ └── __tests__ │ │ │ │ └── Observer.spec.ts │ │ ├── typings │ │ │ └── multi-ini.d.ts │ │ └── utils │ │ │ ├── __mocks__ │ │ │ └── logger.ts │ │ │ ├── appBuilder.ts │ │ │ └── logger.ts │ ├── tsconfig.json │ ├── webpack.config.common.js │ ├── webpack.config.dev.js │ └── webpack.config.prod.js ├── dashboard-frontend │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── .htaccess │ ├── .prettierrc │ ├── .stylelintignore │ ├── .stylelintrc.js │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── __mocks__ │ │ └── fileMock.js │ ├── assets │ │ └── branding │ │ │ ├── branding.css │ │ │ ├── che-logo-text.svg │ │ │ ├── che-logo.svg │ │ │ ├── favicon.ico │ │ │ ├── loader.svg │ │ │ ├── manifest.json │ │ │ └── product.json │ ├── index.html │ ├── jest.config.check.js │ ├── jest.config.js │ ├── jest.setup.tsx │ ├── package.json │ ├── src │ │ ├── App.tsx │ │ ├── Layout │ │ │ ├── ErrorBoundary │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ │ ├── ErrorReporter │ │ │ │ ├── Issue │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── index.module.css │ │ │ │ └── index.tsx │ │ │ ├── Header │ │ │ │ ├── Tools │ │ │ │ │ ├── AboutMenu │ │ │ │ │ │ ├── Modal.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── Modal.spec.tsx │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ApplicationsMenu │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── UserMenu │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ │ ├── Navigation │ │ │ │ ├── MainItem.tsx │ │ │ │ ├── MainList.tsx │ │ │ │ ├── RecentItem │ │ │ │ │ ├── TitleWithHover │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── WorkspaceActions │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── RecentList.tsx │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── MainItem.spec.tsx │ │ │ │ │ ├── MainList.spec.tsx │ │ │ │ │ ├── RecentList.spec.tsx │ │ │ │ │ └── isActive.spec.ts │ │ │ │ ├── index.module.css │ │ │ │ ├── index.tsx │ │ │ │ └── isActive.ts │ │ │ ├── Sidebar │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ │ ├── StoreErrorsAlert │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ │ ├── __tests__ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ └── index.spec.tsx │ │ │ └── index.tsx │ │ ├── Routes │ │ │ ├── NavigateHome.tsx │ │ │ ├── Redirects.tsx │ │ │ ├── __tests__ │ │ │ │ ├── NavigateHome.spec.tsx │ │ │ │ ├── Redirects.spec.tsx │ │ │ │ └── Routes.spec.tsx │ │ │ └── index.tsx │ │ ├── __tests__ │ │ │ ├── const.ts │ │ │ └── workspaceCreationTimeCheck.check.tsx │ │ ├── app.css │ │ ├── components │ │ │ ├── AppAlertGroup │ │ │ │ ├── __tests__ │ │ │ │ │ └── AppAlertGroup.spec.tsx │ │ │ │ └── index.tsx │ │ │ ├── BannerAlert │ │ │ │ ├── Branding │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Custom │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── NoNodeAvailable │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── NotSupportedBrowser │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── isSupportedBrowser.tsx │ │ │ │ ├── WebSocket │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ │ ├── BasicViewer │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── index.module.css │ │ │ │ └── index.tsx │ │ │ ├── BulkSelector │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── index.module.css │ │ │ │ └── index.tsx │ │ │ ├── CheTooltip │ │ │ │ ├── __tests__ │ │ │ │ │ ├── CheTooltip.spec.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ └── CheTooltip.spec.tsx.snap │ │ │ │ ├── index.module.css │ │ │ │ └── index.tsx │ │ │ ├── DevfileViewer │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.module.css │ │ │ │ └── index.tsx │ │ │ ├── EditorSelector │ │ │ │ ├── Definition │ │ │ │ │ ├── DefinitionField │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ImageField │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── DocsLink │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Gallery │ │ │ │ │ ├── Entry │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ │ ├── EditorTools │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── index.module.css │ │ │ │ └── index.tsx │ │ │ ├── ExpandableWarning │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── index.module.css │ │ │ │ └── index.tsx │ │ │ ├── Fallback │ │ │ │ ├── __tests__ │ │ │ │ │ ├── Fallback.spec.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ └── Fallback.spec.tsx.snap │ │ │ │ └── index.tsx │ │ │ ├── Head │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ │ ├── Header │ │ │ │ ├── __tests__ │ │ │ │ │ ├── Header.spec.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ └── Header.spec.tsx.snap │ │ │ │ └── index.tsx │ │ │ ├── ImportFromGit │ │ │ │ ├── RepoOptionsAccordion │ │ │ │ │ ├── AdvancedOptions │ │ │ │ │ │ ├── ContainerImageField │ │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── CpuLimitField │ │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── CreateNewIfExistingField │ │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── MemoryLimitField │ │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── TemporaryStorageField │ │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── GitRepoOptions │ │ │ │ │ │ ├── AdditionalGitRemotes │ │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ ├── gitRemote.spec.tsx.snap │ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ │ ├── gitRemote.spec.tsx │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ ├── gitRemote.tsx │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── GitBranchField │ │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── PathToDevfileField │ │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ ├── helpers.spec.tsx │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── helpers.ts │ │ │ │ └── index.tsx │ │ │ ├── InputGroupExtended │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── index.module.css │ │ │ │ └── index.tsx │ │ │ ├── Progress │ │ │ │ ├── __tests__ │ │ │ │ │ ├── Progress.spec.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ └── Progress.spec.tsx.snap │ │ │ │ ├── index.module.css │ │ │ │ └── index.tsx │ │ │ ├── ResourceIcon │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.module.css │ │ │ │ └── index.tsx │ │ │ ├── Spacer │ │ │ │ ├── index.module.css │ │ │ │ └── index.tsx │ │ │ ├── TagLabel │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── index.module.css │ │ │ │ └── index.tsx │ │ │ ├── TextFileUpload │ │ │ │ ├── Preview │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ │ ├── UnsavedChangesModal │ │ │ │ ├── __tests__ │ │ │ │ │ └── UnsavedChangesModal.spec.tsx │ │ │ │ └── index.tsx │ │ │ ├── UntrustedSourceModal │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ │ ├── Workspace │ │ │ │ └── Status │ │ │ │ │ ├── Indicator │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── Indicator.spec.tsx │ │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ │ └── Indicator.spec.tsx.snap │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Label │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── StoppedIcon.tsx │ │ │ │ │ ├── getStatusIcon.tsx │ │ │ │ │ └── index.module.css │ │ │ ├── WorkspaceEvents │ │ │ │ ├── Item │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ ├── compareEventTime.spec.ts │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── compareEventTime.ts │ │ │ │ ├── index.module.css │ │ │ │ └── index.tsx │ │ │ ├── WorkspaceLogs │ │ │ │ ├── ContainerSelector │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── ToolsPanel │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── Viewer │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── ViewerTools │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── index.module.css │ │ │ │ └── index.tsx │ │ │ └── WorkspaceProgress │ │ │ │ ├── Alert │ │ │ │ ├── ActionGroupSelector │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── index.module.css │ │ │ │ └── index.tsx │ │ │ │ ├── CommonSteps │ │ │ │ └── CheckRunningWorkspacesLimit │ │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ ├── helpers.spec.ts │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ ├── helpers.ts │ │ │ │ │ └── index.tsx │ │ │ │ ├── CreatingSteps │ │ │ │ ├── Apply │ │ │ │ │ ├── Devfile │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── getGitRemotes.spec.ts │ │ │ │ │ │ │ ├── getProjectFromLocation.spec.ts │ │ │ │ │ │ │ ├── index.spec.tsx │ │ │ │ │ │ │ └── prepareDevfile.spec.ts │ │ │ │ │ │ ├── getGitRemotes.ts │ │ │ │ │ │ ├── getProjectFromLocation.ts │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── prepareDevfile.ts │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── index.spec.tsx │ │ │ │ │ │ └── prepareResources.spec.ts │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── prepareResources.ts │ │ │ │ ├── CheckExistingWorkspaces │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── CreateWorkspace │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Fetch │ │ │ │ │ ├── Devfile │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── buildStepName.spec.tsx │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ ├── buildStepName.ts │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ └── Initialize │ │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── ProgressStep.tsx │ │ │ │ ├── StartingSteps │ │ │ │ ├── Initialize │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── OpenWorkspace │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── StartWorkspace │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── index.spec.tsx │ │ │ │ │ │ └── prepareRestart.spec.ts │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── prepareRestart.ts │ │ │ │ └── WorkspaceConditions │ │ │ │ │ ├── PureSubCondition.tsx │ │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ ├── PureSubCondition.spec.tsx │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ ├── PureSubCondition.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ ├── fixtures.ts │ │ │ │ │ ├── helpers.spec.ts │ │ │ │ │ ├── index.spec.tsx │ │ │ │ │ └── utils.spec.ts │ │ │ │ │ ├── helpers.ts │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── StepTitle │ │ │ │ ├── Icon │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── index.module.css │ │ │ │ └── index.tsx │ │ │ │ ├── TimeLimit │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ │ │ ├── Wizard │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── index.module.css │ │ │ │ └── index.tsx │ │ │ │ ├── __mocks__ │ │ │ │ ├── ProgressStep.tsx │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ ├── index.spec.tsx │ │ │ │ └── utils.spec.ts │ │ │ │ ├── const.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── utils.ts │ │ │ │ └── workspaceStatusIs.ts │ │ ├── containers │ │ │ ├── GetStarted │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ │ ├── Loader │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ │ ├── UserPreferences │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ │ ├── WorkspaceDetails │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ │ └── WorkspacesList │ │ │ │ ├── __tests__ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ ├── contexts │ │ │ ├── ToggleBars │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ └── WorkspaceActions │ │ │ │ ├── BulkDeleteButton │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ │ │ ├── DeleteButton │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ │ │ ├── DeleteConfirmation │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ │ │ ├── DeleteWarning │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ │ │ ├── Dropdown │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── index.module.css │ │ │ │ └── index.tsx │ │ │ │ ├── Provider.tsx │ │ │ │ ├── __mocks__ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ ├── Provider.spec.tsx │ │ │ │ └── helpers.spec.ts │ │ │ │ ├── helpers.ts │ │ │ │ └── index.tsx │ │ ├── index.tsx │ │ ├── inversify.config.ts │ │ ├── overrides.css │ │ ├── pages │ │ │ ├── GetStarted │ │ │ │ ├── SamplesList │ │ │ │ │ ├── Gallery │ │ │ │ │ │ ├── Card │ │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ ├── filterEditors.spec.ts │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ ├── filterEditors.ts │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Toolbar │ │ │ │ │ │ ├── CreateNewIfExistSwitch │ │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── TemporaryStorageSwitch │ │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── WorkspaceName │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ ├── devfileMetadata.json │ │ │ │ │ ├── index.spec.tsx │ │ │ │ │ └── plugins.json │ │ │ │ └── index.tsx │ │ │ ├── Loader │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── index.module.css │ │ │ │ └── index.tsx │ │ │ ├── UserPreferences │ │ │ │ ├── ContainerRegistriesTab │ │ │ │ │ ├── EmptyState │ │ │ │ │ │ ├── NoRegistries.tsx │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ ├── NoRegistries.spec.tsx │ │ │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ │ └── NoRegistries.spec.tsx.snap │ │ │ │ │ ├── Modals │ │ │ │ │ │ ├── DeleteRegistriesModal.tsx │ │ │ │ │ │ ├── EditRegistryModal.tsx │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ ├── DeleteRegistriesModal.spec.tsx │ │ │ │ │ │ │ ├── EditRegistryModal.spec.tsx │ │ │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ │ ├── DeleteRegistriesModal.spec.tsx.snap │ │ │ │ │ │ │ └── EditRegistryModal.spec.tsx.snap │ │ │ │ │ ├── RegistryPassword │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── RegistryUrl │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── RegistryUsername │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ └── registryRowBuilder.ts │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── GitConfig │ │ │ │ │ ├── AddModal │ │ │ │ │ │ ├── GitConfigForm │ │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── EmptyState │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Form │ │ │ │ │ │ ├── SectionUser │ │ │ │ │ │ │ ├── Email │ │ │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── Name │ │ │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── GitConfigImport │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Toolbar │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Viewer │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── GitServices │ │ │ │ │ ├── EmptyState │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── List │ │ │ │ │ │ ├── StatusIcon │ │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── Tooltip │ │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── RevokeModal │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Toolbar │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── PersonalAccessTokens │ │ │ │ │ ├── AddEditModal │ │ │ │ │ │ ├── Form │ │ │ │ │ │ │ ├── GitProviderEndpoint │ │ │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── GitProviderOrganization │ │ │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── GitProviderSelector │ │ │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── TokenData │ │ │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── TokenName │ │ │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── DeleteModal │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── index.spec.tsx │ │ │ │ │ │ │ └── stub.ts │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── EmptyState │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── List │ │ │ │ │ │ ├── Toolbar │ │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ ├── index.spec.tsx │ │ │ │ │ │ └── stub.ts │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── types.tsx │ │ │ │ ├── SshKeys │ │ │ │ │ ├── AddModal │ │ │ │ │ │ ├── Form │ │ │ │ │ │ │ ├── SshPassphrase │ │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── SshPrivateKey │ │ │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── SshPublicKey │ │ │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── DeleteModal │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── EmptyState │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── List │ │ │ │ │ │ ├── Entry │ │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ ├── index.spec.tsx │ │ │ │ │ │ └── stub.ts │ │ │ │ │ └── index.tsx │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── const.ts │ │ │ │ └── index.tsx │ │ │ ├── WorkspaceDetails │ │ │ │ ├── DevfileEditorTab │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── Header │ │ │ │ │ ├── Actions │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── OverviewTab │ │ │ │ │ ├── GitRepo │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── InfrastructureNamespace │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Projects │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── StorageType │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── WorkspaceName │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── index.module.css │ │ │ │ └── index.tsx │ │ │ └── WorkspacesList │ │ │ │ ├── EmptyState │ │ │ │ ├── NoWorkspaces.tsx │ │ │ │ └── NothingFound.tsx │ │ │ │ ├── Rows.tsx │ │ │ │ ├── Toolbar │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── index.module.css │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── index.module.css │ │ │ │ └── index.tsx │ │ ├── preload │ │ │ ├── __tests__ │ │ │ │ ├── index.spec.ts │ │ │ │ └── main.spec.ts │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ └── main.ts │ │ ├── service-worker.ts │ │ ├── services │ │ │ ├── __mocks__ │ │ │ │ ├── axios.ts │ │ │ │ └── getComponentRenderer.tsx │ │ │ ├── alerts │ │ │ │ └── appAlerts.ts │ │ │ ├── assets │ │ │ │ └── branding.ts │ │ │ ├── axios-wrapper │ │ │ │ ├── __tests__ │ │ │ │ │ └── axiosWrapper.spec.ts │ │ │ │ ├── axiosWrapper.ts │ │ │ │ └── getAxiosInstance.ts │ │ │ ├── backend-client │ │ │ │ ├── __tests__ │ │ │ │ │ ├── dataResolverApi.spec.ts │ │ │ │ │ ├── devWorkspaceTemplateApi.spec.ts │ │ │ │ │ ├── editorsApi.spec.ts │ │ │ │ │ ├── factoryApi.spec.ts │ │ │ │ │ ├── kubernetesNamespaceApi.spec.ts │ │ │ │ │ ├── oAuthApi.spec.tsx │ │ │ │ │ ├── parentDevfileApi.spec.ts │ │ │ │ │ ├── workspacePreferenceApi.spec.ts │ │ │ │ │ └── yamlResolverApi.spec.ts │ │ │ │ ├── clusterConfigApi.ts │ │ │ │ ├── clusterInfoApi.ts │ │ │ │ ├── const.ts │ │ │ │ ├── dataResolverApi.ts │ │ │ │ ├── devWorkspaceApi.ts │ │ │ │ ├── devWorkspaceClusterApi.ts │ │ │ │ ├── devWorkspaceTemplateApi.ts │ │ │ │ ├── devworkspaceResourcesApi.ts │ │ │ │ ├── editorsApi.ts │ │ │ │ ├── eventsApi.ts │ │ │ │ ├── factoryApi.ts │ │ │ │ ├── gitConfigApi.ts │ │ │ │ ├── kubernetesNamespaceApi.ts │ │ │ │ ├── oAuthApi.ts │ │ │ │ ├── parentDevfileApi.ts │ │ │ │ ├── personalAccessTokenApi.ts │ │ │ │ ├── podsApi.ts │ │ │ │ ├── serverConfigApi.ts │ │ │ │ ├── sshKeysApi.ts │ │ │ │ ├── userProfileApi.ts │ │ │ │ ├── websocketClient │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── index.spec.ts │ │ │ │ │ │ ├── messageHandler.spec.ts │ │ │ │ │ │ └── subscriptionsManager.spec.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── messageHandler.ts │ │ │ │ │ └── subscriptionsManager.ts │ │ │ │ ├── workspacePreferencesApi.ts │ │ │ │ └── yamlResolverApi.ts │ │ │ ├── bootstrap │ │ │ │ ├── __tests__ │ │ │ │ │ ├── index.spec.tsx │ │ │ │ │ ├── issuesReporter.spec.tsx │ │ │ │ │ ├── namespaceProvisionWarnings.spec.tsx │ │ │ │ │ ├── warningsReporter.spec.tsx │ │ │ │ │ └── workspaceStoppedDetector.spec.ts │ │ │ │ ├── branding.constant.ts │ │ │ │ ├── index.ts │ │ │ │ ├── issuesReporter.ts │ │ │ │ ├── namespaceProvisionWarnings.ts │ │ │ │ ├── warningsReporter.ts │ │ │ │ └── workspaceStoppedDetector.ts │ │ │ ├── che-user-id │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.ts │ │ │ │ └── index.ts │ │ │ ├── devfile │ │ │ │ ├── __tests__ │ │ │ │ │ └── devfileAdapter.spec.ts │ │ │ │ └── adapter.ts │ │ │ ├── devfileApi │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.ts │ │ │ │ ├── devWorkspace │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── metadata.ts │ │ │ │ │ └── spec │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── template.ts │ │ │ │ ├── devWorkspaceTemplate │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── index.spec.ts │ │ │ │ │ │ └── metadata.spec.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── metadata.ts │ │ │ │ ├── devfile │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── index.spec.ts │ │ │ │ │ │ └── metadata.spec.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── metadata.ts │ │ │ │ ├── devfileApi.ts │ │ │ │ ├── index.ts │ │ │ │ └── typeguards.ts │ │ │ ├── factory-location-adapter │ │ │ │ ├── __tests__ │ │ │ │ │ └── factoryLocationAdapter.spec.ts │ │ │ │ └── index.ts │ │ │ ├── helpers │ │ │ │ ├── __tests__ │ │ │ │ │ ├── api-ping.spec.ts │ │ │ │ │ ├── brandingLogo.spec.ts │ │ │ │ │ ├── dates.spec.ts │ │ │ │ │ ├── filter.spec.ts │ │ │ │ │ ├── getName.spec.ts │ │ │ │ │ ├── getProjectName.spec.ts │ │ │ │ │ ├── location.spec.ts │ │ │ │ │ ├── sanitizeName.spec.ts │ │ │ │ │ └── types.spec.ts │ │ │ │ ├── api-ping.ts │ │ │ │ ├── brandingLogo.ts │ │ │ │ ├── dates.ts │ │ │ │ ├── debounce.ts │ │ │ │ ├── deferred.ts │ │ │ │ ├── delay.ts │ │ │ │ ├── devworkspace.ts │ │ │ │ ├── disposable.ts │ │ │ │ ├── document.ts │ │ │ │ ├── editor.ts │ │ │ │ ├── factoryFlow │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── buildFactoryParams.spec.ts │ │ │ │ │ │ └── getLoaderMode.spec.ts │ │ │ │ │ ├── buildFactoryParams.ts │ │ │ │ │ ├── findTargetWorkspace.ts │ │ │ │ │ └── getLoaderMode.ts │ │ │ │ ├── filter.ts │ │ │ │ ├── generateName.ts │ │ │ │ ├── getProjectName.ts │ │ │ │ ├── location.ts │ │ │ │ ├── login.ts │ │ │ │ ├── random.ts │ │ │ │ ├── resourceVersion.ts │ │ │ │ ├── sanitizeName.ts │ │ │ │ ├── tools.ts │ │ │ │ └── types.ts │ │ │ ├── models │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.ts │ │ │ │ ├── che.ts │ │ │ │ └── index.ts │ │ │ ├── oauth │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.ts │ │ │ │ └── index.ts │ │ │ ├── registry │ │ │ │ ├── __tests__ │ │ │ │ │ ├── devfiles.spec.ts │ │ │ │ │ ├── fetchData.spec.ts │ │ │ │ │ └── types.spec.ts │ │ │ │ ├── devfiles.ts │ │ │ │ ├── fetchData.ts │ │ │ │ ├── resources.ts │ │ │ │ └── types.ts │ │ │ ├── resource-fetcher │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.ts │ │ │ │ ├── appendLink.ts │ │ │ │ └── index.ts │ │ │ ├── session-storage │ │ │ │ └── index.ts │ │ │ ├── storageTypes.ts │ │ │ ├── tabManager │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.ts │ │ │ │ └── index.ts │ │ │ ├── workspace-adapter │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.ts │ │ │ │ └── index.ts │ │ │ └── workspace-client │ │ │ │ ├── __tests__ │ │ │ │ └── helpers.spec.ts │ │ │ │ ├── devworkspace │ │ │ │ ├── DevWorkspaceDefaultPluginsHandler.ts │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ ├── devWorkspaceSpecTemplates.ts │ │ │ │ │ │ └── editorDefinitions.ts │ │ │ │ │ ├── devWorkspaceClient.changeWorkspaceStatus.spec.ts │ │ │ │ │ ├── devWorkspaceClient.create.spec.ts │ │ │ │ │ ├── devWorkspaceClient.debugMode.spec.ts │ │ │ │ │ ├── devWorkspaceClient.editorUpdate.spec.ts │ │ │ │ │ ├── devWorkspaceClient.manageContainerSccAttribute.spec.ts │ │ │ │ │ ├── devWorkspaceClient.managePvcStrategy.spec.ts │ │ │ │ │ ├── devWorkspaceClient.onStart.spec.ts │ │ │ │ │ ├── devWorkspaceClient.spec.ts │ │ │ │ │ ├── devWorkspaceClient.update.spec.ts │ │ │ │ │ └── devWorkspaceEditor.spec.ts │ │ │ │ ├── devWorkspaceClient.ts │ │ │ │ └── devWorkspaceEditor.ts │ │ │ │ └── helpers.ts │ │ ├── store │ │ │ ├── BannerAlert │ │ │ │ ├── __tests__ │ │ │ │ │ ├── actions.spec.ts │ │ │ │ │ ├── reducer.spec.ts │ │ │ │ │ └── selectors.spec.ts │ │ │ │ ├── actions.ts │ │ │ │ ├── index.ts │ │ │ │ ├── reducer.ts │ │ │ │ └── selectors.ts │ │ │ ├── Branding │ │ │ │ ├── __tests__ │ │ │ │ │ ├── actions.spec.ts │ │ │ │ │ ├── reducer.spec.ts │ │ │ │ │ └── selectors.spec.ts │ │ │ │ ├── actions.ts │ │ │ │ ├── index.ts │ │ │ │ ├── reducer.ts │ │ │ │ └── selectors.ts │ │ │ ├── ClusterConfig │ │ │ │ ├── __tests__ │ │ │ │ │ ├── actions.spec.ts │ │ │ │ │ ├── reducer.spec.ts │ │ │ │ │ └── selectors.spec.ts │ │ │ │ ├── actions.ts │ │ │ │ ├── index.ts │ │ │ │ ├── reducer.ts │ │ │ │ └── selectors.ts │ │ │ ├── ClusterInfo │ │ │ │ ├── __tests__ │ │ │ │ │ ├── actions.spec.ts │ │ │ │ │ ├── reducer.spec.ts │ │ │ │ │ └── selectors.spec.ts │ │ │ │ ├── actions.ts │ │ │ │ ├── index.ts │ │ │ │ ├── reducer.ts │ │ │ │ └── selectors.ts │ │ │ ├── DevWorkspacesCluster │ │ │ │ ├── __tests__ │ │ │ │ │ ├── actions.spec.ts │ │ │ │ │ ├── index.spec.ts │ │ │ │ │ ├── reducer.spec.ts │ │ │ │ │ └── selectors.spec.ts │ │ │ │ ├── actions.ts │ │ │ │ ├── index.ts │ │ │ │ ├── reducer.ts │ │ │ │ └── selectors.ts │ │ │ ├── DevfileRegistries │ │ │ │ ├── __tests__ │ │ │ │ │ ├── actions.spec.ts │ │ │ │ │ ├── getEditor.spec.ts │ │ │ │ │ ├── reducer.spec.ts │ │ │ │ │ └── selectors.spec.ts │ │ │ │ ├── actions.ts │ │ │ │ ├── const.ts │ │ │ │ ├── getEditor.ts │ │ │ │ ├── index.ts │ │ │ │ ├── reducer.ts │ │ │ │ └── selectors.ts │ │ │ ├── DockerConfig │ │ │ │ ├── __tests__ │ │ │ │ │ ├── actions.spec.ts │ │ │ │ │ ├── reducer.spec.ts │ │ │ │ │ └── selectors.spec.ts │ │ │ │ ├── actions.ts │ │ │ │ ├── index.ts │ │ │ │ ├── reducer.ts │ │ │ │ └── selectors.ts │ │ │ ├── Events │ │ │ │ ├── __tests__ │ │ │ │ │ ├── actions.spec.ts │ │ │ │ │ ├── reducers.spec.ts │ │ │ │ │ ├── selectors.spec.ts │ │ │ │ │ └── stubs.ts │ │ │ │ ├── actions.ts │ │ │ │ ├── index.ts │ │ │ │ ├── reducer.ts │ │ │ │ └── selectors.ts │ │ │ ├── FactoryResolver │ │ │ │ ├── __tests__ │ │ │ │ │ ├── actions.spec.ts │ │ │ │ │ ├── helper.isDevfileRegistryLocation.spec.ts │ │ │ │ │ ├── helpers.grabLink.spec.ts │ │ │ │ │ ├── helpers.normalizeDevfileV2.spec.ts │ │ │ │ │ ├── reducer.spec.ts │ │ │ │ │ └── selectors.spec.ts │ │ │ │ ├── actions.ts │ │ │ │ ├── helpers.ts │ │ │ │ ├── index.ts │ │ │ │ ├── reducer.ts │ │ │ │ └── selectors.ts │ │ │ ├── GitConfig │ │ │ │ ├── __tests__ │ │ │ │ │ ├── actions.spec.ts │ │ │ │ │ ├── reducer.spec.ts │ │ │ │ │ └── selectors.spec.ts │ │ │ │ ├── actions.ts │ │ │ │ ├── index.ts │ │ │ │ ├── reducer.ts │ │ │ │ └── selectors.ts │ │ │ ├── GitOauthConfig │ │ │ │ ├── __tests__ │ │ │ │ │ ├── actions.spec.ts │ │ │ │ │ ├── reducer.spec.ts │ │ │ │ │ └── selectors.spec.ts │ │ │ │ ├── actions.ts │ │ │ │ ├── index.ts │ │ │ │ ├── reducer.ts │ │ │ │ └── selectors.ts │ │ │ ├── InfrastructureNamespaces │ │ │ │ ├── __tests__ │ │ │ │ │ ├── actions.spec.ts │ │ │ │ │ ├── reducer.spec.ts │ │ │ │ │ └── selectors.spec.ts │ │ │ │ ├── actions.ts │ │ │ │ ├── index.ts │ │ │ │ ├── reducer.ts │ │ │ │ └── selectors.ts │ │ │ ├── PersonalAccessTokens │ │ │ │ ├── __tests__ │ │ │ │ │ ├── actions.spec.ts │ │ │ │ │ ├── reducers.spec.ts │ │ │ │ │ ├── selectors.spec.ts │ │ │ │ │ └── stub.ts │ │ │ │ ├── actions.ts │ │ │ │ ├── index.ts │ │ │ │ ├── reducer.ts │ │ │ │ └── selectors.ts │ │ │ ├── Plugins │ │ │ │ ├── chePlugins │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── actions.spec.ts │ │ │ │ │ │ ├── helpers.convertToEditorPlugin.spec.ts │ │ │ │ │ │ ├── reducer.spec.ts │ │ │ │ │ │ └── selectors.spec.ts │ │ │ │ │ ├── actions.ts │ │ │ │ │ ├── helpers.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── reducer.ts │ │ │ │ │ └── selectors.ts │ │ │ │ └── devWorkspacePlugins │ │ │ │ │ ├── __tests__ │ │ │ │ │ ├── actions.spec.ts │ │ │ │ │ ├── reducer.spec.ts │ │ │ │ │ └── selectors.spec.ts │ │ │ │ │ ├── actions.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── reducer.ts │ │ │ │ │ └── selectors.ts │ │ │ ├── Pods │ │ │ │ ├── Logs │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── actions.spec.ts │ │ │ │ │ │ ├── reducers.spec.ts │ │ │ │ │ │ └── selectors.spec.ts │ │ │ │ │ ├── actions.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── reducer.ts │ │ │ │ │ └── selectors.ts │ │ │ │ ├── __tests__ │ │ │ │ │ ├── actions.spec.ts │ │ │ │ │ ├── isSamePod.spec.ts │ │ │ │ │ ├── reducers.spec.ts │ │ │ │ │ ├── selectors.spec.ts │ │ │ │ │ └── stub.ts │ │ │ │ ├── actions.ts │ │ │ │ ├── index.ts │ │ │ │ ├── isSamePod.ts │ │ │ │ ├── reducer.ts │ │ │ │ └── selectors.ts │ │ │ ├── SanityCheck │ │ │ │ ├── __tests__ │ │ │ │ │ ├── actions.spec.ts │ │ │ │ │ ├── index.spec.ts │ │ │ │ │ ├── reducer.spec.ts │ │ │ │ │ └── selectors.spec.ts │ │ │ │ ├── actions.ts │ │ │ │ ├── index.ts │ │ │ │ ├── reducer.ts │ │ │ │ └── selectors.ts │ │ │ ├── ServerConfig │ │ │ │ ├── __tests__ │ │ │ │ │ ├── actions.spec.ts │ │ │ │ │ ├── helpers.spec.ts │ │ │ │ │ ├── reducer.spec.ts │ │ │ │ │ ├── selectors.spec.ts │ │ │ │ │ └── stubs.ts │ │ │ │ ├── actions.ts │ │ │ │ ├── helpers.ts │ │ │ │ ├── index.ts │ │ │ │ ├── reducer.ts │ │ │ │ └── selectors.ts │ │ │ ├── SshKeys │ │ │ │ ├── __tests__ │ │ │ │ │ ├── actions.spec.ts │ │ │ │ │ ├── reducers.spec.ts │ │ │ │ │ └── selectors.spec.ts │ │ │ │ ├── actions.ts │ │ │ │ ├── index.ts │ │ │ │ ├── reducer.ts │ │ │ │ └── selectors.ts │ │ │ ├── User │ │ │ │ ├── Id │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── actions.spec.ts │ │ │ │ │ │ ├── reducers.spec.ts │ │ │ │ │ │ └── selectors.spec.ts │ │ │ │ │ ├── actions.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── reducer.ts │ │ │ │ │ └── selectors.ts │ │ │ │ └── Profile │ │ │ │ │ ├── __tests__ │ │ │ │ │ ├── actions.spec.ts │ │ │ │ │ ├── reducer.spec.ts │ │ │ │ │ └── selectors.spec.ts │ │ │ │ │ ├── actions.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── reducer.ts │ │ │ │ │ └── selectors.ts │ │ │ ├── Workspaces │ │ │ │ ├── Preferences │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── actions.spec.ts │ │ │ │ │ │ ├── helpers.spec.ts │ │ │ │ │ │ ├── reducer.spec.ts │ │ │ │ │ │ └── selectors.spec.ts │ │ │ │ │ ├── actions.ts │ │ │ │ │ ├── helpers.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── reducer.ts │ │ │ │ │ └── selectors.ts │ │ │ │ ├── __tests__ │ │ │ │ │ ├── actions.spec.ts │ │ │ │ │ └── reducer.spec.ts │ │ │ │ ├── actions.ts │ │ │ │ ├── devWorkspaces │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── reducers.spec.ts │ │ │ │ │ │ └── selectors.spec.ts │ │ │ │ │ ├── actions │ │ │ │ │ │ ├── actionCreators │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ ├── createWorkspaceFromDevfile.spec.ts │ │ │ │ │ │ │ │ ├── createWorkspaceFromResources.spec.ts │ │ │ │ │ │ │ │ ├── handleWebSocketMessage.spec.ts │ │ │ │ │ │ │ │ ├── helpers.spec.ts │ │ │ │ │ │ │ │ ├── requestWorkspace.spec.ts │ │ │ │ │ │ │ │ ├── requestWorkspaces.spec.ts │ │ │ │ │ │ │ │ ├── restartWorkspace.spec.ts │ │ │ │ │ │ │ │ ├── startWorkspace.spec.ts │ │ │ │ │ │ │ │ ├── stopWorkspace.spec.ts │ │ │ │ │ │ │ │ ├── terminateWorkspace.spec.ts │ │ │ │ │ │ │ │ ├── updateWorkspace.spec.ts │ │ │ │ │ │ │ │ ├── updateWorkspaceAnnotation.spec.ts │ │ │ │ │ │ │ │ └── updateWorkspaceWithDefaultDevfile.spec.ts │ │ │ │ │ │ │ ├── const.ts │ │ │ │ │ │ │ ├── createWorkspaceFromDevfile.ts │ │ │ │ │ │ │ ├── createWorkspaceFromResources.ts │ │ │ │ │ │ │ ├── handleWebSocketMessage.ts │ │ │ │ │ │ │ ├── helpers.ts │ │ │ │ │ │ │ ├── helpers │ │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ │ ├── editorImage.spec.ts │ │ │ │ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ │ │ │ │ ├── test-devfile-without-components.yaml │ │ │ │ │ │ │ │ │ │ ├── test-devworkspace-template-with-custom-image.yaml │ │ │ │ │ │ │ │ │ │ ├── test-devworkspace-template-without-components.yaml │ │ │ │ │ │ │ │ │ │ ├── test-devworkspace-template.yaml │ │ │ │ │ │ │ │ │ │ ├── test-editor-devfile-with-custom-image.yaml │ │ │ │ │ │ │ │ │ │ └── test-editor-devfile.yaml │ │ │ │ │ │ │ │ │ ├── getCustomEditor.spec.ts │ │ │ │ │ │ │ │ │ └── updateEditor.spec.ts │ │ │ │ │ │ │ │ ├── editorImage.ts │ │ │ │ │ │ │ │ ├── getCustomEditor.ts │ │ │ │ │ │ │ │ └── updateEditor.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── requestWorkspace.ts │ │ │ │ │ │ │ ├── requestWorkspaces.ts │ │ │ │ │ │ │ ├── restartWorkspace.ts │ │ │ │ │ │ │ ├── startWorkspace.ts │ │ │ │ │ │ │ ├── stopWorkspace.ts │ │ │ │ │ │ │ ├── terminateWorkspace.ts │ │ │ │ │ │ │ ├── updateWorkspace.ts │ │ │ │ │ │ │ ├── updateWorkspaceAnnotation.ts │ │ │ │ │ │ │ └── updateWorkspaceWithDefaultDevfile.ts │ │ │ │ │ │ ├── actions.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── reducer.ts │ │ │ │ │ └── selectors.ts │ │ │ │ ├── index.ts │ │ │ │ ├── reducer.ts │ │ │ │ └── selectors.ts │ │ │ ├── __mocks__ │ │ │ │ ├── devWorkspaceBuilder.ts │ │ │ │ ├── mockActionsTestStore.ts │ │ │ │ ├── mockStore.ts │ │ │ │ └── thunk.ts │ │ │ ├── hooks.ts │ │ │ ├── index.ts │ │ │ └── rootReducer.ts │ │ └── typings │ │ │ ├── css.module.d.ts │ │ │ └── multi-ini.d.ts │ ├── static │ │ └── loader.html │ ├── test-staged.sh │ ├── tsconfig.json │ ├── webpack.config.common.js │ ├── webpack.config.dev.js │ └── webpack.config.prod.js └── devfile-registry │ ├── air-gap │ └── index.json │ ├── devfiles │ ├── empty.yaml │ └── index.json │ └── images │ └── empty.svg ├── run ├── MULTIARCH_BUILD.md ├── README.md ├── build-multiarch.sh ├── local-run.sh ├── patch.sh ├── prepare-local-run.sh └── revert-local-run.sh ├── scripts ├── airgap.sh ├── container_tool.sh └── sed_in_place.sh ├── skaffold.yaml ├── tsconfig.json └── yarn.lock /.ci/oci-dashboard-happy-path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/.ci/oci-dashboard-happy-path.sh -------------------------------------------------------------------------------- /.ci/oci-dashboard-puppeteer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/.ci/oci-dashboard-puppeteer.sh -------------------------------------------------------------------------------- /.ci/openshift-ci/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/.ci/openshift-ci/Dockerfile -------------------------------------------------------------------------------- /.ci/resources/cluster-oauth-patch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/.ci/resources/cluster-oauth-patch.json -------------------------------------------------------------------------------- /.ci/resources/dashboard-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/.ci/resources/dashboard-pod.yaml -------------------------------------------------------------------------------- /.ci/resources/pod-che-smoke-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/.ci/resources/pod-che-smoke-test.yaml -------------------------------------------------------------------------------- /.ci/resources/users.htpasswd: -------------------------------------------------------------------------------- 1 | happypath-dev:$2y$05$W0AwRfPa1A1ne8QI0rvzpOgroeASayQdvNR.5GteVqjx26TOWz/km 2 | -------------------------------------------------------------------------------- /.config/copyright.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/.config/copyright.js -------------------------------------------------------------------------------- /.deps/EXCLUDED/dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/.deps/EXCLUDED/dev.md -------------------------------------------------------------------------------- /.deps/EXCLUDED/prod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/.deps/EXCLUDED/prod.md -------------------------------------------------------------------------------- /.deps/dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/.deps/dev.md -------------------------------------------------------------------------------- /.deps/prod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/.deps/prod.md -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | /.yarn/** linguist-vendored 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Global Owners 2 | * @akurinnoy @olexii4 @ibuziuk 3 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/.github/workflows/codecov.yml -------------------------------------------------------------------------------- /.github/workflows/next-build-multiarch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/.github/workflows/next-build-multiarch.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/try-in-web-ide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/.github/workflows/try-in-web-ide.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarn/releases/yarn-4.9.0.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/.yarn/releases/yarn-4.9.0.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /che-dashboard.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/che-dashboard.code-workspace -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | github_checks: 2 | annotations: false 3 | -------------------------------------------------------------------------------- /devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/devfile.yaml -------------------------------------------------------------------------------- /jest.config.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/jest.config.base.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/jest.config.js -------------------------------------------------------------------------------- /k8s/devspaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/k8s/devspaces.yaml -------------------------------------------------------------------------------- /k8s/eclipse-che.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/k8s/eclipse-che.yaml -------------------------------------------------------------------------------- /make-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/make-release.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/package.json -------------------------------------------------------------------------------- /packages/common/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/common/.editorconfig -------------------------------------------------------------------------------- /packages/common/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/common/.eslintrc.js -------------------------------------------------------------------------------- /packages/common/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/common/.gitignore -------------------------------------------------------------------------------- /packages/common/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/common/.prettierrc -------------------------------------------------------------------------------- /packages/common/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/common/jest.config.js -------------------------------------------------------------------------------- /packages/common/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/common/package.json -------------------------------------------------------------------------------- /packages/common/src/__tests__/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/common/src/__tests__/index.spec.ts -------------------------------------------------------------------------------- /packages/common/src/dto/api/__tests__/webSocket.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/common/src/dto/api/__tests__/webSocket.spec.ts -------------------------------------------------------------------------------- /packages/common/src/dto/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/common/src/dto/api/index.ts -------------------------------------------------------------------------------- /packages/common/src/dto/api/webSocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/common/src/dto/api/webSocket.ts -------------------------------------------------------------------------------- /packages/common/src/dto/cluster-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/common/src/dto/cluster-config.ts -------------------------------------------------------------------------------- /packages/common/src/dto/cluster-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/common/src/dto/cluster-info.ts -------------------------------------------------------------------------------- /packages/common/src/helpers/__tests__/errors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/common/src/helpers/__tests__/errors.spec.ts -------------------------------------------------------------------------------- /packages/common/src/helpers/__tests__/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/common/src/helpers/__tests__/index.spec.ts -------------------------------------------------------------------------------- /packages/common/src/helpers/__tests__/sanitize.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/common/src/helpers/__tests__/sanitize.spec.ts -------------------------------------------------------------------------------- /packages/common/src/helpers/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/common/src/helpers/errors.ts -------------------------------------------------------------------------------- /packages/common/src/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/common/src/helpers/index.ts -------------------------------------------------------------------------------- /packages/common/src/helpers/sanitize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/common/src/helpers/sanitize.ts -------------------------------------------------------------------------------- /packages/common/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/common/src/index.ts -------------------------------------------------------------------------------- /packages/common/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/common/tsconfig.json -------------------------------------------------------------------------------- /packages/dashboard-backend/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/.editorconfig -------------------------------------------------------------------------------- /packages/dashboard-backend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/.eslintrc.js -------------------------------------------------------------------------------- /packages/dashboard-backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/.gitignore -------------------------------------------------------------------------------- /packages/dashboard-backend/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/.npmignore -------------------------------------------------------------------------------- /packages/dashboard-backend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/.prettierrc -------------------------------------------------------------------------------- /packages/dashboard-backend/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/.vscode/settings.json -------------------------------------------------------------------------------- /packages/dashboard-backend/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/jest.config.js -------------------------------------------------------------------------------- /packages/dashboard-backend/jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/jest.setup.js -------------------------------------------------------------------------------- /packages/dashboard-backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/package.json -------------------------------------------------------------------------------- /packages/dashboard-backend/src/__mocks__/args.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/__mocks__/args.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/__tests__/app.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/__tests__/app.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/app.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/constants/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/constants/config.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/constants/examples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/constants/examples.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/constants/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/constants/schemas.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/constants/server-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/constants/server-config.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/devworkspaceClient/__mocks__/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/devworkspaceClient/__mocks__/index.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/devworkspaceClient/__tests__/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/devworkspaceClient/__tests__/index.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/devworkspaceClient/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/devworkspaceClient/index.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/devworkspaceClient/services/__tests__/fixtures/air-gap/sample-devfile.yaml: -------------------------------------------------------------------------------- 1 | schemaVersion: 2.2.0 2 | metadata: 3 | generateName: empty 4 | -------------------------------------------------------------------------------- /packages/dashboard-backend/src/devworkspaceClient/services/__tests__/fixtures/air-gap/sample-project.zip: -------------------------------------------------------------------------------- 1 | project -------------------------------------------------------------------------------- /packages/dashboard-backend/src/devworkspaceClient/services/airGapSampleApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/devworkspaceClient/services/airGapSampleApi.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/devworkspaceClient/services/devWorkspaceApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/devworkspaceClient/services/devWorkspaceApi.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/devworkspaceClient/services/dockerConfigApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/devworkspaceClient/services/dockerConfigApi.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/devworkspaceClient/services/editorsApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/devworkspaceClient/services/editorsApi.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/devworkspaceClient/services/eventApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/devworkspaceClient/services/eventApi.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/devworkspaceClient/services/gitConfigApi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/devworkspaceClient/services/gitConfigApi/index.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/devworkspaceClient/services/helpers/createError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/devworkspaceClient/services/helpers/createError.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/devworkspaceClient/services/helpers/exec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/devworkspaceClient/services/helpers/exec.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/devworkspaceClient/services/kubeConfigApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/devworkspaceClient/services/kubeConfigApi.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/devworkspaceClient/services/logsApi/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/devworkspaceClient/services/logsApi/const.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/devworkspaceClient/services/logsApi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/devworkspaceClient/services/logsApi/index.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/devworkspaceClient/services/podApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/devworkspaceClient/services/podApi.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/devworkspaceClient/services/podmanApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/devworkspaceClient/services/podmanApi.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/devworkspaceClient/services/serverConfigApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/devworkspaceClient/services/serverConfigApi.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/devworkspaceClient/services/sshKeysApi/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/devworkspaceClient/services/sshKeysApi/helpers.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/devworkspaceClient/services/sshKeysApi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/devworkspaceClient/services/sshKeysApi/index.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/devworkspaceClient/services/userProfileApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/devworkspaceClient/services/userProfileApi.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/devworkspaceClient/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/devworkspaceClient/types/index.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/helpers/__mocks__/getUserName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/helpers/__mocks__/getUserName.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/helpers/__tests__/getUserName.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/helpers/__tests__/getUserName.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/helpers/findApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/helpers/findApi.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/helpers/getUserName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/helpers/getUserName.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/helpers/parseArgs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/helpers/parseArgs.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/helpers/typeguards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/helpers/typeguards.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/localRun/hooks/authenticateApiRequests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/localRun/hooks/authenticateApiRequests.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/localRun/hooks/authorizationHooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/localRun/hooks/authorizationHooks.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/localRun/hooks/stubCheServerOptionsRequests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/localRun/hooks/stubCheServerOptionsRequests.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/localRun/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/localRun/index.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/localRun/plugins/oauth2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/localRun/plugins/oauth2.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/localRun/proxies/cheServerApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/localRun/proxies/cheServerApi.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/localRun/proxies/dexProxies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/localRun/proxies/dexProxies.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/localRun/routes/dexCallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/localRun/routes/dexCallback.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/localRun/routes/signOut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/localRun/routes/signOut.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/models/__tests__/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/models/__tests__/index.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/models/__tests__/restParams.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/models/__tests__/restParams.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/models/index.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/models/restParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/models/restParams.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/plugins/cors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/plugins/cors.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/plugins/staticServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/plugins/staticServer.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/plugins/swagger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/plugins/swagger.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/plugins/webSocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/plugins/webSocket.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/__tests__/factoryAcceptanceRedirect.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/__tests__/factoryAcceptanceRedirect.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/__tests__/airGapSample.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/__tests__/airGapSample.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/__tests__/clusterConfig.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/__tests__/clusterConfig.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/__tests__/clusterInfo.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/__tests__/clusterInfo.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/__tests__/dataResolver.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/__tests__/dataResolver.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/__tests__/devworkspaceCluster.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/__tests__/devworkspaceCluster.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/__tests__/devworkspaceTemplates.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/__tests__/devworkspaceTemplates.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/__tests__/devworkspaces.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/__tests__/devworkspaces.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/__tests__/dockerConfig.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/__tests__/dockerConfig.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/__tests__/editors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/__tests__/editors.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/__tests__/events.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/__tests__/events.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/__tests__/gitConfig.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/__tests__/gitConfig.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/__tests__/kubeConfig.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/__tests__/kubeConfig.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/__tests__/personalAccessToken.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/__tests__/personalAccessToken.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/__tests__/pods.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/__tests__/pods.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/__tests__/serverConfig.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/__tests__/serverConfig.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/__tests__/sshKeys.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/__tests__/sshKeys.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/__tests__/userProfile.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/__tests__/userProfile.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/__tests__/workspacePreferences.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/__tests__/workspacePreferences.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/airGapSample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/airGapSample.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/clusterConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/clusterConfig.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/clusterInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/clusterInfo.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/dataResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/dataResolver.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/devworkspaceCluster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/devworkspaceCluster.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/devworkspaceResources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/devworkspaceResources.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/devworkspaceTemplates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/devworkspaceTemplates.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/devworkspaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/devworkspaces.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/dockerConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/dockerConfig.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/editors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/editors.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/events.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/gettingStartedSample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/gettingStartedSample.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/gitConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/gitConfig.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/helpers/__mocks__/getToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/helpers/__mocks__/getToken.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/helpers/getCertificateAuthority.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/helpers/getCertificateAuthority.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/helpers/getDevWorkspaceClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/helpers/getDevWorkspaceClient.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/helpers/getServiceAccountToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/helpers/getServiceAccountToken.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/helpers/getToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/helpers/getToken.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/kubeConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/kubeConfig.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/personalAccessToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/personalAccessToken.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/podmanLogin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/podmanLogin.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/pods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/pods.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/serverConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/serverConfig.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/sshKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/sshKeys.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/userProfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/userProfile.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/websocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/websocket.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/api/workspacePreferences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/api/workspacePreferences.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/factoryAcceptanceRedirect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/factoryAcceptanceRedirect.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/routes/workspaceRedirect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/routes/workspaceRedirect.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/server.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/services/ObjectsWatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/services/ObjectsWatcher.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/services/SubscriptionManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/services/SubscriptionManager.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/services/__tests__/ObjectsWatcher.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/services/__tests__/ObjectsWatcher.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/services/__tests__/SubscriptionManager.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/services/__tests__/SubscriptionManager.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/services/__tests__/helpers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/services/__tests__/helpers.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/services/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/services/helpers.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/services/kubeclient/dwClientProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/services/kubeclient/dwClientProvider.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/services/kubeclient/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/services/kubeclient/helpers/index.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/services/kubeclient/kubeConfigProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/services/kubeclient/kubeConfigProvider.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/services/logWatcher/__mocks__/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/services/logWatcher/__mocks__/index.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/services/logWatcher/__tests__/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/services/logWatcher/__tests__/index.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/services/logWatcher/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/services/logWatcher/index.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/services/types/Observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/services/types/Observer.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/services/types/__tests__/Observer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/services/types/__tests__/Observer.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/typings/multi-ini.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/typings/multi-ini.d.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/utils/__mocks__/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/utils/__mocks__/logger.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/utils/appBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/utils/appBuilder.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/src/utils/logger.ts -------------------------------------------------------------------------------- /packages/dashboard-backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/tsconfig.json -------------------------------------------------------------------------------- /packages/dashboard-backend/webpack.config.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/webpack.config.common.js -------------------------------------------------------------------------------- /packages/dashboard-backend/webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/webpack.config.dev.js -------------------------------------------------------------------------------- /packages/dashboard-backend/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-backend/webpack.config.prod.js -------------------------------------------------------------------------------- /packages/dashboard-frontend/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/.editorconfig -------------------------------------------------------------------------------- /packages/dashboard-frontend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/.eslintrc.js -------------------------------------------------------------------------------- /packages/dashboard-frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/.gitignore -------------------------------------------------------------------------------- /packages/dashboard-frontend/.htaccess: -------------------------------------------------------------------------------- 1 | RedirectMatch ^/$ /dashboard/ 2 | -------------------------------------------------------------------------------- /packages/dashboard-frontend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/.prettierrc -------------------------------------------------------------------------------- /packages/dashboard-frontend/.stylelintignore: -------------------------------------------------------------------------------- 1 | coverage/**/*.css 2 | -------------------------------------------------------------------------------- /packages/dashboard-frontend/.stylelintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/.stylelintrc.js -------------------------------------------------------------------------------- /packages/dashboard-frontend/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/.vscode/launch.json -------------------------------------------------------------------------------- /packages/dashboard-frontend/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/.vscode/settings.json -------------------------------------------------------------------------------- /packages/dashboard-frontend/__mocks__/fileMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/__mocks__/fileMock.js -------------------------------------------------------------------------------- /packages/dashboard-frontend/assets/branding/branding.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/assets/branding/branding.css -------------------------------------------------------------------------------- /packages/dashboard-frontend/assets/branding/che-logo-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/assets/branding/che-logo-text.svg -------------------------------------------------------------------------------- /packages/dashboard-frontend/assets/branding/che-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/assets/branding/che-logo.svg -------------------------------------------------------------------------------- /packages/dashboard-frontend/assets/branding/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/assets/branding/favicon.ico -------------------------------------------------------------------------------- /packages/dashboard-frontend/assets/branding/loader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/assets/branding/loader.svg -------------------------------------------------------------------------------- /packages/dashboard-frontend/assets/branding/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/assets/branding/manifest.json -------------------------------------------------------------------------------- /packages/dashboard-frontend/assets/branding/product.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /packages/dashboard-frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/index.html -------------------------------------------------------------------------------- /packages/dashboard-frontend/jest.config.check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/jest.config.check.js -------------------------------------------------------------------------------- /packages/dashboard-frontend/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/jest.config.js -------------------------------------------------------------------------------- /packages/dashboard-frontend/jest.setup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/jest.setup.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/package.json -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/App.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/ErrorBoundary/__mocks__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/ErrorBoundary/__mocks__/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/ErrorBoundary/__tests__/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/ErrorBoundary/__tests__/index.spec.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/ErrorBoundary/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/ErrorBoundary/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/ErrorReporter/Issue/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/ErrorReporter/Issue/index.module.css -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/ErrorReporter/Issue/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/ErrorReporter/Issue/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/ErrorReporter/__tests__/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/ErrorReporter/__tests__/index.spec.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/ErrorReporter/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/ErrorReporter/index.module.css -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/ErrorReporter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/ErrorReporter/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/Header/Tools/AboutMenu/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/Header/Tools/AboutMenu/Modal.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/Header/Tools/AboutMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/Header/Tools/AboutMenu/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/Header/Tools/ApplicationsMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/Header/Tools/ApplicationsMenu/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/Header/Tools/UserMenu/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/Header/Tools/UserMenu/index.module.css -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/Header/Tools/UserMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/Header/Tools/UserMenu/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/Header/Tools/__tests__/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/Header/Tools/__tests__/index.spec.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/Header/Tools/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/Header/Tools/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/Header/__mocks__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/Header/__mocks__/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/Header/__tests__/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/Header/__tests__/index.spec.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/Header/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/Navigation/MainItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/Navigation/MainItem.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/Navigation/MainList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/Navigation/MainList.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/Navigation/RecentItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/Navigation/RecentItem/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/Navigation/RecentList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/Navigation/RecentList.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/Navigation/__mocks__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/Navigation/__mocks__/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/Navigation/__tests__/MainItem.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/Navigation/__tests__/MainItem.spec.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/Navigation/__tests__/MainList.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/Navigation/__tests__/MainList.spec.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/Navigation/__tests__/RecentList.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/Navigation/__tests__/RecentList.spec.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/Navigation/__tests__/isActive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/Navigation/__tests__/isActive.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/Navigation/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/Navigation/index.module.css -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/Navigation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/Navigation/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/Navigation/isActive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/Navigation/isActive.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/Sidebar/__mocks__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/Sidebar/__mocks__/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/Sidebar/__tests__/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/Sidebar/__tests__/index.spec.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/Sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/Sidebar/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/StoreErrorsAlert/__mocks__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/StoreErrorsAlert/__mocks__/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/StoreErrorsAlert/__tests__/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/StoreErrorsAlert/__tests__/index.spec.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/StoreErrorsAlert/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/StoreErrorsAlert/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/__tests__/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/__tests__/index.spec.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Layout/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Routes/NavigateHome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Routes/NavigateHome.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Routes/Redirects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Routes/Redirects.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Routes/__tests__/NavigateHome.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Routes/__tests__/NavigateHome.spec.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Routes/__tests__/Redirects.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Routes/__tests__/Redirects.spec.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Routes/__tests__/Routes.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Routes/__tests__/Routes.spec.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/Routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/Routes/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/__tests__/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/__tests__/const.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/__tests__/workspaceCreationTimeCheck.check.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/__tests__/workspaceCreationTimeCheck.check.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/app.css -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/AppAlertGroup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/AppAlertGroup/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/BannerAlert/Branding/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/BannerAlert/Branding/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/BannerAlert/Custom/__mocks__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/BannerAlert/Custom/__mocks__/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/BannerAlert/Custom/index.module.css: -------------------------------------------------------------------------------- 1 | .customBanner { 2 | white-space: normal; 3 | } 4 | -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/BannerAlert/Custom/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/BannerAlert/Custom/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/BannerAlert/NoNodeAvailable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/BannerAlert/NoNodeAvailable/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/BannerAlert/WebSocket/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/BannerAlert/WebSocket/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/BannerAlert/__mocks__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/BannerAlert/__mocks__/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/BannerAlert/__tests__/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/BannerAlert/__tests__/index.spec.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/BannerAlert/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/BannerAlert/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/BasicViewer/__mocks__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/BasicViewer/__mocks__/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/BasicViewer/__tests__/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/BasicViewer/__tests__/index.spec.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/BasicViewer/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/BasicViewer/index.module.css -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/BasicViewer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/BasicViewer/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/BulkSelector/__tests__/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/BulkSelector/__tests__/index.spec.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/BulkSelector/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/BulkSelector/index.module.css -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/BulkSelector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/BulkSelector/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/CheTooltip/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/CheTooltip/index.module.css -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/CheTooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/CheTooltip/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/DevfileViewer/__mocks__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/DevfileViewer/__mocks__/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/DevfileViewer/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/DevfileViewer/index.module.css -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/DevfileViewer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/DevfileViewer/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/EditorSelector/Definition/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/EditorSelector/Definition/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/EditorSelector/DocsLink/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/EditorSelector/DocsLink/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/EditorSelector/Gallery/Entry/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/EditorSelector/Gallery/Entry/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/EditorSelector/Gallery/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/EditorSelector/Gallery/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/EditorSelector/__mocks__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/EditorSelector/__mocks__/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/EditorSelector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/EditorSelector/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/EditorTools/__mocks__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/EditorTools/__mocks__/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/EditorTools/__tests__/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/EditorTools/__tests__/index.spec.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/EditorTools/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/EditorTools/index.module.css -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/EditorTools/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/EditorTools/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/ExpandableWarning/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/ExpandableWarning/index.module.css -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/ExpandableWarning/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/ExpandableWarning/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/Fallback/__tests__/Fallback.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/Fallback/__tests__/Fallback.spec.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/Fallback/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/Fallback/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/Head/__tests__/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/Head/__tests__/index.spec.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/Head/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/Head/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/Header/__tests__/Header.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/Header/__tests__/Header.spec.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/Header/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/ImportFromGit/__mocks__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/ImportFromGit/__mocks__/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/ImportFromGit/__tests__/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/ImportFromGit/__tests__/index.spec.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/ImportFromGit/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/ImportFromGit/helpers.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/ImportFromGit/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/ImportFromGit/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/InputGroupExtended/__mocks__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/InputGroupExtended/__mocks__/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/InputGroupExtended/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/InputGroupExtended/index.module.css -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/InputGroupExtended/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/InputGroupExtended/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/Progress/__tests__/Progress.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/Progress/__tests__/Progress.spec.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/Progress/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/Progress/index.module.css -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/Progress/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/Progress/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/ResourceIcon/__mocks__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/ResourceIcon/__mocks__/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/ResourceIcon/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/ResourceIcon/index.module.css -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/ResourceIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/ResourceIcon/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/Spacer/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/Spacer/index.module.css -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/Spacer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/Spacer/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/TagLabel/__tests__/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/TagLabel/__tests__/index.spec.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/TagLabel/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/TagLabel/index.module.css -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/TagLabel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/TagLabel/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/TextFileUpload/Preview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/TextFileUpload/Preview/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/TextFileUpload/__mocks__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/TextFileUpload/__mocks__/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/TextFileUpload/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/TextFileUpload/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/UnsavedChangesModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/UnsavedChangesModal/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/UntrustedSourceModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/UntrustedSourceModal/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/Workspace/Status/Indicator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/Workspace/Status/Indicator/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/Workspace/Status/Label/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/Workspace/Status/Label/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/Workspace/Status/StoppedIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/Workspace/Status/StoppedIcon.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/Workspace/Status/getStatusIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/Workspace/Status/getStatusIcon.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/Workspace/Status/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/Workspace/Status/index.module.css -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/WorkspaceEvents/Item/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/WorkspaceEvents/Item/index.module.css -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/WorkspaceEvents/Item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/WorkspaceEvents/Item/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/WorkspaceEvents/__mocks__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/WorkspaceEvents/__mocks__/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/WorkspaceEvents/compareEventTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/WorkspaceEvents/compareEventTime.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/WorkspaceEvents/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/WorkspaceEvents/index.module.css -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/WorkspaceEvents/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/WorkspaceEvents/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/WorkspaceLogs/ToolsPanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/WorkspaceLogs/ToolsPanel/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/WorkspaceLogs/Viewer/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/WorkspaceLogs/Viewer/index.module.css -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/WorkspaceLogs/Viewer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/WorkspaceLogs/Viewer/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/WorkspaceLogs/ViewerTools/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/WorkspaceLogs/ViewerTools/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/WorkspaceLogs/__mocks__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/WorkspaceLogs/__mocks__/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/WorkspaceLogs/__tests__/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/WorkspaceLogs/__tests__/index.spec.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/WorkspaceLogs/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/WorkspaceLogs/index.module.css -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/WorkspaceLogs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/WorkspaceLogs/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/WorkspaceProgress/Alert/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/WorkspaceProgress/Alert/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/WorkspaceProgress/ProgressStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/WorkspaceProgress/ProgressStep.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/WorkspaceProgress/StepTitle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/WorkspaceProgress/StepTitle/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/WorkspaceProgress/TimeLimit/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/WorkspaceProgress/TimeLimit/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/WorkspaceProgress/Wizard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/WorkspaceProgress/Wizard/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/WorkspaceProgress/__mocks__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/WorkspaceProgress/__mocks__/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/WorkspaceProgress/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/WorkspaceProgress/const.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/WorkspaceProgress/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/WorkspaceProgress/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/WorkspaceProgress/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/WorkspaceProgress/utils.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/components/WorkspaceProgress/workspaceStatusIs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/components/WorkspaceProgress/workspaceStatusIs.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/containers/GetStarted/__tests__/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/containers/GetStarted/__tests__/index.spec.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/containers/GetStarted/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/containers/GetStarted/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/containers/Loader/__tests__/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/containers/Loader/__tests__/index.spec.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/containers/Loader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/containers/Loader/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/containers/UserPreferences/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/containers/UserPreferences/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/containers/WorkspaceDetails/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/containers/WorkspaceDetails/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/containers/WorkspacesList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/containers/WorkspacesList/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/contexts/ToggleBars/__mocks__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/contexts/ToggleBars/__mocks__/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/contexts/ToggleBars/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/contexts/ToggleBars/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/contexts/WorkspaceActions/DeleteButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/contexts/WorkspaceActions/DeleteButton/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/contexts/WorkspaceActions/DeleteWarning/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/contexts/WorkspaceActions/DeleteWarning/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/contexts/WorkspaceActions/Dropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/contexts/WorkspaceActions/Dropdown/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/contexts/WorkspaceActions/Provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/contexts/WorkspaceActions/Provider.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/contexts/WorkspaceActions/__mocks__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/contexts/WorkspaceActions/__mocks__/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/contexts/WorkspaceActions/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/contexts/WorkspaceActions/helpers.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/contexts/WorkspaceActions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/contexts/WorkspaceActions/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/inversify.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/inversify.config.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/overrides.css -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/GetStarted/SamplesList/Gallery/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/GetStarted/SamplesList/Gallery/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/GetStarted/SamplesList/Toolbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/GetStarted/SamplesList/Toolbar/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/GetStarted/SamplesList/__mocks__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/GetStarted/SamplesList/__mocks__/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/GetStarted/SamplesList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/GetStarted/SamplesList/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/GetStarted/__mocks__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/GetStarted/__mocks__/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/GetStarted/__tests__/devfileMetadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/GetStarted/__tests__/devfileMetadata.json -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/GetStarted/__tests__/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/GetStarted/__tests__/index.spec.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/GetStarted/__tests__/plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/GetStarted/__tests__/plugins.json -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/GetStarted/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/GetStarted/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/Loader/__mocks__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/Loader/__mocks__/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/Loader/__tests__/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/Loader/__tests__/index.spec.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/Loader/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/Loader/index.module.css -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/Loader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/Loader/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/UserPreferences/GitConfig/Form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/UserPreferences/GitConfig/Form/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/UserPreferences/GitConfig/Toolbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/UserPreferences/GitConfig/Toolbar/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/UserPreferences/GitConfig/Viewer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/UserPreferences/GitConfig/Viewer/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/UserPreferences/GitConfig/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/UserPreferences/GitConfig/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/UserPreferences/GitServices/List/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/UserPreferences/GitServices/List/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/UserPreferences/GitServices/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/UserPreferences/GitServices/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/UserPreferences/SshKeys/AddModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/UserPreferences/SshKeys/AddModal/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/UserPreferences/SshKeys/List/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/UserPreferences/SshKeys/List/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/UserPreferences/SshKeys/__mocks__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/UserPreferences/SshKeys/__mocks__/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/UserPreferences/SshKeys/__tests__/stub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/UserPreferences/SshKeys/__tests__/stub.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/UserPreferences/SshKeys/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/UserPreferences/SshKeys/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/UserPreferences/__mocks__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/UserPreferences/__mocks__/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/UserPreferences/__tests__/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/UserPreferences/__tests__/index.spec.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/UserPreferences/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/UserPreferences/const.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/UserPreferences/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/UserPreferences/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/WorkspaceDetails/DevfileEditorTab/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/WorkspaceDetails/DevfileEditorTab/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/WorkspaceDetails/Header/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/WorkspaceDetails/Header/index.module.css -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/WorkspaceDetails/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/WorkspaceDetails/Header/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/WorkspaceDetails/OverviewTab/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/WorkspaceDetails/OverviewTab/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/WorkspaceDetails/__mocks__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/WorkspaceDetails/__mocks__/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/WorkspaceDetails/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/WorkspaceDetails/index.module.css -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/WorkspaceDetails/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/WorkspaceDetails/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/WorkspacesList/Rows.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/WorkspacesList/Rows.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/WorkspacesList/Toolbar/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/WorkspacesList/Toolbar/index.module.css -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/WorkspacesList/Toolbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/WorkspacesList/Toolbar/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/WorkspacesList/__tests__/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/WorkspacesList/__tests__/index.spec.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/WorkspacesList/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/WorkspacesList/index.module.css -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/pages/WorkspacesList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/pages/WorkspacesList/index.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/preload/__tests__/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/preload/__tests__/index.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/preload/__tests__/main.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/preload/__tests__/main.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/preload/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/preload/index.html -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/preload/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/preload/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/preload/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/preload/main.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/service-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/service-worker.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/__mocks__/axios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/__mocks__/axios.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/__mocks__/getComponentRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/__mocks__/getComponentRenderer.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/alerts/appAlerts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/alerts/appAlerts.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/assets/branding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/assets/branding.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/axios-wrapper/axiosWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/axios-wrapper/axiosWrapper.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/axios-wrapper/getAxiosInstance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/axios-wrapper/getAxiosInstance.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/backend-client/clusterConfigApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/backend-client/clusterConfigApi.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/backend-client/clusterInfoApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/backend-client/clusterInfoApi.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/backend-client/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/backend-client/const.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/backend-client/dataResolverApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/backend-client/dataResolverApi.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/backend-client/devWorkspaceApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/backend-client/devWorkspaceApi.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/backend-client/editorsApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/backend-client/editorsApi.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/backend-client/eventsApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/backend-client/eventsApi.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/backend-client/factoryApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/backend-client/factoryApi.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/backend-client/gitConfigApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/backend-client/gitConfigApi.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/backend-client/oAuthApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/backend-client/oAuthApi.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/backend-client/parentDevfileApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/backend-client/parentDevfileApi.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/backend-client/podsApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/backend-client/podsApi.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/backend-client/serverConfigApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/backend-client/serverConfigApi.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/backend-client/sshKeysApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/backend-client/sshKeysApi.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/backend-client/userProfileApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/backend-client/userProfileApi.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/backend-client/yamlResolverApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/backend-client/yamlResolverApi.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/bootstrap/__tests__/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/bootstrap/__tests__/index.spec.tsx -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/bootstrap/branding.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/bootstrap/branding.constant.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/bootstrap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/bootstrap/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/bootstrap/issuesReporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/bootstrap/issuesReporter.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/bootstrap/warningsReporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/bootstrap/warningsReporter.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/bootstrap/workspaceStoppedDetector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/bootstrap/workspaceStoppedDetector.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/che-user-id/__tests__/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/che-user-id/__tests__/index.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/che-user-id/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/che-user-id/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/devfile/adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/devfile/adapter.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/devfileApi/__mocks__/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/devfileApi/__mocks__/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/devfileApi/devWorkspace/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/devfileApi/devWorkspace/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/devfileApi/devWorkspace/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/devfileApi/devWorkspace/metadata.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/devfileApi/devWorkspace/spec/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/devfileApi/devWorkspace/spec/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/devfileApi/devfile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/devfileApi/devfile/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/devfileApi/devfile/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/devfileApi/devfile/metadata.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/devfileApi/devfileApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/devfileApi/devfileApi.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/devfileApi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/devfileApi/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/devfileApi/typeguards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/devfileApi/typeguards.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/factory-location-adapter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/factory-location-adapter/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/helpers/__tests__/api-ping.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/helpers/__tests__/api-ping.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/helpers/__tests__/dates.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/helpers/__tests__/dates.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/helpers/__tests__/filter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/helpers/__tests__/filter.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/helpers/__tests__/getName.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/helpers/__tests__/getName.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/helpers/__tests__/location.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/helpers/__tests__/location.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/helpers/__tests__/types.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/helpers/__tests__/types.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/helpers/api-ping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/helpers/api-ping.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/helpers/brandingLogo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/helpers/brandingLogo.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/helpers/dates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/helpers/dates.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/helpers/debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/helpers/debounce.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/helpers/deferred.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/helpers/deferred.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/helpers/delay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/helpers/delay.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/helpers/devworkspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/helpers/devworkspace.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/helpers/disposable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/helpers/disposable.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/helpers/document.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/helpers/document.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/helpers/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/helpers/editor.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/helpers/factoryFlow/getLoaderMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/helpers/factoryFlow/getLoaderMode.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/helpers/filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/helpers/filter.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/helpers/generateName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/helpers/generateName.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/helpers/getProjectName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/helpers/getProjectName.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/helpers/location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/helpers/location.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/helpers/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/helpers/login.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/helpers/random.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/helpers/random.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/helpers/resourceVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/helpers/resourceVersion.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/helpers/sanitizeName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/helpers/sanitizeName.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/helpers/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/helpers/tools.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/helpers/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/helpers/types.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/models/__tests__/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/models/__tests__/index.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/models/che.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/models/che.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/models/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/oauth/__tests__/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/oauth/__tests__/index.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/oauth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/oauth/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/registry/__tests__/devfiles.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/registry/__tests__/devfiles.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/registry/__tests__/fetchData.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/registry/__tests__/fetchData.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/registry/__tests__/types.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/registry/__tests__/types.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/registry/devfiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/registry/devfiles.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/registry/fetchData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/registry/fetchData.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/registry/resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/registry/resources.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/registry/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/registry/types.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/resource-fetcher/appendLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/resource-fetcher/appendLink.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/resource-fetcher/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/resource-fetcher/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/session-storage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/session-storage/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/storageTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/storageTypes.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/tabManager/__tests__/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/tabManager/__tests__/index.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/tabManager/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/tabManager/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/workspace-adapter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/workspace-adapter/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/services/workspace-client/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/services/workspace-client/helpers.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/BannerAlert/__tests__/actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/BannerAlert/__tests__/actions.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/BannerAlert/__tests__/reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/BannerAlert/__tests__/reducer.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/BannerAlert/__tests__/selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/BannerAlert/__tests__/selectors.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/BannerAlert/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/BannerAlert/actions.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/BannerAlert/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/BannerAlert/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/BannerAlert/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/BannerAlert/reducer.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/BannerAlert/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/BannerAlert/selectors.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Branding/__tests__/actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Branding/__tests__/actions.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Branding/__tests__/reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Branding/__tests__/reducer.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Branding/__tests__/selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Branding/__tests__/selectors.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Branding/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Branding/actions.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Branding/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Branding/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Branding/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Branding/reducer.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Branding/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Branding/selectors.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/ClusterConfig/__tests__/actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/ClusterConfig/__tests__/actions.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/ClusterConfig/__tests__/reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/ClusterConfig/__tests__/reducer.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/ClusterConfig/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/ClusterConfig/actions.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/ClusterConfig/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/ClusterConfig/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/ClusterConfig/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/ClusterConfig/reducer.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/ClusterConfig/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/ClusterConfig/selectors.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/ClusterInfo/__tests__/actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/ClusterInfo/__tests__/actions.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/ClusterInfo/__tests__/reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/ClusterInfo/__tests__/reducer.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/ClusterInfo/__tests__/selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/ClusterInfo/__tests__/selectors.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/ClusterInfo/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/ClusterInfo/actions.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/ClusterInfo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/ClusterInfo/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/ClusterInfo/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/ClusterInfo/reducer.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/ClusterInfo/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/ClusterInfo/selectors.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/DevWorkspacesCluster/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/DevWorkspacesCluster/actions.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/DevWorkspacesCluster/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/DevWorkspacesCluster/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/DevWorkspacesCluster/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/DevWorkspacesCluster/reducer.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/DevWorkspacesCluster/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/DevWorkspacesCluster/selectors.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/DevfileRegistries/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/DevfileRegistries/actions.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/DevfileRegistries/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/DevfileRegistries/const.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/DevfileRegistries/getEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/DevfileRegistries/getEditor.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/DevfileRegistries/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/DevfileRegistries/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/DevfileRegistries/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/DevfileRegistries/reducer.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/DevfileRegistries/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/DevfileRegistries/selectors.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/DockerConfig/__tests__/actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/DockerConfig/__tests__/actions.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/DockerConfig/__tests__/reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/DockerConfig/__tests__/reducer.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/DockerConfig/__tests__/selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/DockerConfig/__tests__/selectors.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/DockerConfig/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/DockerConfig/actions.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/DockerConfig/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/DockerConfig/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/DockerConfig/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/DockerConfig/reducer.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/DockerConfig/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/DockerConfig/selectors.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Events/__tests__/actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Events/__tests__/actions.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Events/__tests__/reducers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Events/__tests__/reducers.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Events/__tests__/selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Events/__tests__/selectors.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Events/__tests__/stubs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Events/__tests__/stubs.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Events/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Events/actions.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Events/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Events/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Events/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Events/reducer.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Events/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Events/selectors.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/FactoryResolver/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/FactoryResolver/actions.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/FactoryResolver/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/FactoryResolver/helpers.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/FactoryResolver/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/FactoryResolver/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/FactoryResolver/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/FactoryResolver/reducer.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/FactoryResolver/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/FactoryResolver/selectors.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/GitConfig/__tests__/actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/GitConfig/__tests__/actions.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/GitConfig/__tests__/reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/GitConfig/__tests__/reducer.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/GitConfig/__tests__/selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/GitConfig/__tests__/selectors.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/GitConfig/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/GitConfig/actions.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/GitConfig/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/GitConfig/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/GitConfig/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/GitConfig/reducer.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/GitConfig/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/GitConfig/selectors.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/GitOauthConfig/__tests__/actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/GitOauthConfig/__tests__/actions.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/GitOauthConfig/__tests__/reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/GitOauthConfig/__tests__/reducer.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/GitOauthConfig/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/GitOauthConfig/actions.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/GitOauthConfig/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/GitOauthConfig/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/GitOauthConfig/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/GitOauthConfig/reducer.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/GitOauthConfig/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/GitOauthConfig/selectors.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/InfrastructureNamespaces/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/InfrastructureNamespaces/actions.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/InfrastructureNamespaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/InfrastructureNamespaces/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/InfrastructureNamespaces/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/InfrastructureNamespaces/reducer.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/InfrastructureNamespaces/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/InfrastructureNamespaces/selectors.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/PersonalAccessTokens/__tests__/stub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/PersonalAccessTokens/__tests__/stub.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/PersonalAccessTokens/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/PersonalAccessTokens/actions.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/PersonalAccessTokens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/PersonalAccessTokens/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/PersonalAccessTokens/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/PersonalAccessTokens/reducer.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/PersonalAccessTokens/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/PersonalAccessTokens/selectors.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Plugins/chePlugins/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Plugins/chePlugins/actions.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Plugins/chePlugins/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Plugins/chePlugins/helpers.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Plugins/chePlugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Plugins/chePlugins/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Plugins/chePlugins/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Plugins/chePlugins/reducer.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Plugins/chePlugins/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Plugins/chePlugins/selectors.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Plugins/devWorkspacePlugins/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Plugins/devWorkspacePlugins/actions.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Plugins/devWorkspacePlugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Plugins/devWorkspacePlugins/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Plugins/devWorkspacePlugins/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Plugins/devWorkspacePlugins/reducer.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Plugins/devWorkspacePlugins/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Plugins/devWorkspacePlugins/selectors.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Pods/Logs/__tests__/actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Pods/Logs/__tests__/actions.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Pods/Logs/__tests__/reducers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Pods/Logs/__tests__/reducers.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Pods/Logs/__tests__/selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Pods/Logs/__tests__/selectors.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Pods/Logs/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Pods/Logs/actions.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Pods/Logs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Pods/Logs/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Pods/Logs/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Pods/Logs/reducer.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Pods/Logs/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Pods/Logs/selectors.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Pods/__tests__/actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Pods/__tests__/actions.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Pods/__tests__/isSamePod.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Pods/__tests__/isSamePod.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Pods/__tests__/reducers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Pods/__tests__/reducers.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Pods/__tests__/selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Pods/__tests__/selectors.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Pods/__tests__/stub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Pods/__tests__/stub.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Pods/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Pods/actions.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Pods/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Pods/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Pods/isSamePod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Pods/isSamePod.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Pods/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Pods/reducer.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Pods/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Pods/selectors.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/SanityCheck/__tests__/actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/SanityCheck/__tests__/actions.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/SanityCheck/__tests__/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/SanityCheck/__tests__/index.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/SanityCheck/__tests__/reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/SanityCheck/__tests__/reducer.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/SanityCheck/__tests__/selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/SanityCheck/__tests__/selectors.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/SanityCheck/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/SanityCheck/actions.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/SanityCheck/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/SanityCheck/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/SanityCheck/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/SanityCheck/reducer.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/SanityCheck/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/SanityCheck/selectors.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/ServerConfig/__tests__/actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/ServerConfig/__tests__/actions.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/ServerConfig/__tests__/helpers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/ServerConfig/__tests__/helpers.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/ServerConfig/__tests__/reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/ServerConfig/__tests__/reducer.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/ServerConfig/__tests__/selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/ServerConfig/__tests__/selectors.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/ServerConfig/__tests__/stubs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/ServerConfig/__tests__/stubs.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/ServerConfig/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/ServerConfig/actions.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/ServerConfig/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/ServerConfig/helpers.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/ServerConfig/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/ServerConfig/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/ServerConfig/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/ServerConfig/reducer.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/ServerConfig/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/ServerConfig/selectors.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/SshKeys/__tests__/actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/SshKeys/__tests__/actions.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/SshKeys/__tests__/reducers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/SshKeys/__tests__/reducers.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/SshKeys/__tests__/selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/SshKeys/__tests__/selectors.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/SshKeys/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/SshKeys/actions.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/SshKeys/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/SshKeys/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/SshKeys/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/SshKeys/reducer.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/SshKeys/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/SshKeys/selectors.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/User/Id/__tests__/actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/User/Id/__tests__/actions.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/User/Id/__tests__/reducers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/User/Id/__tests__/reducers.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/User/Id/__tests__/selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/User/Id/__tests__/selectors.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/User/Id/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/User/Id/actions.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/User/Id/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/User/Id/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/User/Id/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/User/Id/reducer.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/User/Id/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/User/Id/selectors.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/User/Profile/__tests__/actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/User/Profile/__tests__/actions.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/User/Profile/__tests__/reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/User/Profile/__tests__/reducer.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/User/Profile/__tests__/selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/User/Profile/__tests__/selectors.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/User/Profile/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/User/Profile/actions.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/User/Profile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/User/Profile/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/User/Profile/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/User/Profile/reducer.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/User/Profile/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/User/Profile/selectors.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Workspaces/Preferences/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Workspaces/Preferences/actions.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Workspaces/Preferences/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Workspaces/Preferences/helpers.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Workspaces/Preferences/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Workspaces/Preferences/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Workspaces/Preferences/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Workspaces/Preferences/reducer.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Workspaces/Preferences/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Workspaces/Preferences/selectors.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Workspaces/__tests__/actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Workspaces/__tests__/actions.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Workspaces/__tests__/reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Workspaces/__tests__/reducer.spec.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Workspaces/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Workspaces/actions.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Workspaces/devWorkspaces/actions/actionCreators/helpers/__tests__/fixtures/test-devfile-without-components.yaml: -------------------------------------------------------------------------------- 1 | schemaVersion: 2.2.0 2 | metadata: 3 | name: che-test 4 | -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Workspaces/devWorkspaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Workspaces/devWorkspaces/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Workspaces/devWorkspaces/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Workspaces/devWorkspaces/reducer.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Workspaces/devWorkspaces/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Workspaces/devWorkspaces/selectors.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Workspaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Workspaces/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Workspaces/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Workspaces/reducer.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/Workspaces/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/Workspaces/selectors.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/__mocks__/devWorkspaceBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/__mocks__/devWorkspaceBuilder.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/__mocks__/mockActionsTestStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/__mocks__/mockActionsTestStore.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/__mocks__/mockStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/__mocks__/mockStore.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/__mocks__/thunk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/__mocks__/thunk.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/hooks.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/index.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/store/rootReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/store/rootReducer.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/typings/css.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/typings/css.module.d.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/src/typings/multi-ini.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/src/typings/multi-ini.d.ts -------------------------------------------------------------------------------- /packages/dashboard-frontend/static/loader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/static/loader.html -------------------------------------------------------------------------------- /packages/dashboard-frontend/test-staged.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/test-staged.sh -------------------------------------------------------------------------------- /packages/dashboard-frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/tsconfig.json -------------------------------------------------------------------------------- /packages/dashboard-frontend/webpack.config.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/webpack.config.common.js -------------------------------------------------------------------------------- /packages/dashboard-frontend/webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/webpack.config.dev.js -------------------------------------------------------------------------------- /packages/dashboard-frontend/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/dashboard-frontend/webpack.config.prod.js -------------------------------------------------------------------------------- /packages/devfile-registry/air-gap/index.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /packages/devfile-registry/devfiles/empty.yaml: -------------------------------------------------------------------------------- 1 | schemaVersion: 2.2.0 2 | metadata: 3 | generateName: empty 4 | -------------------------------------------------------------------------------- /packages/devfile-registry/devfiles/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/devfile-registry/devfiles/index.json -------------------------------------------------------------------------------- /packages/devfile-registry/images/empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/packages/devfile-registry/images/empty.svg -------------------------------------------------------------------------------- /run/MULTIARCH_BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/run/MULTIARCH_BUILD.md -------------------------------------------------------------------------------- /run/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/run/README.md -------------------------------------------------------------------------------- /run/build-multiarch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/run/build-multiarch.sh -------------------------------------------------------------------------------- /run/local-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/run/local-run.sh -------------------------------------------------------------------------------- /run/patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/run/patch.sh -------------------------------------------------------------------------------- /run/prepare-local-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/run/prepare-local-run.sh -------------------------------------------------------------------------------- /run/revert-local-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/run/revert-local-run.sh -------------------------------------------------------------------------------- /scripts/airgap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/scripts/airgap.sh -------------------------------------------------------------------------------- /scripts/container_tool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/scripts/container_tool.sh -------------------------------------------------------------------------------- /scripts/sed_in_place.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/scripts/sed_in_place.sh -------------------------------------------------------------------------------- /skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/skaffold.yaml -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-che/che-dashboard/HEAD/yarn.lock --------------------------------------------------------------------------------