Skip to content

Commit ccdd0fd

Browse files
committed
update changes
No-Issue
1 parent 2bb66fd commit ccdd0fd

File tree

7 files changed

+1
-86
lines changed

7 files changed

+1
-86
lines changed

.github/workflows/cypress.yml

-8
Original file line numberDiff line numberDiff line change
@@ -169,14 +169,6 @@ jobs:
169169
run: |
170170
galaxykit -s http://localhost:8002/api/galaxy/ -u admin -p admin collection list
171171
172-
- name: "Ensure galaxykit can connect to API (insights)"
173-
if: ${{ env.BACKEND_FLAVOR == 'insights' }}
174-
run: |
175-
galaxykit -s http://localhost:8002/api/automation-hub/ \
176-
-u admin -p admin \
177-
--auth-url http://localhost:8002/auth/realms/redhat-external/protocol/openid-connect/token \
178-
collection list
179-
180172
- name: "Check initial feature flags (standalone)"
181173
run: |
182174
curl -s http://localhost:5001/api/galaxy/_ui/v1/feature-flags/ | jq

community/nginx/nginx.conf

-28
This file was deleted.

community/nginx/nginx.d/default.conf

-41
This file was deleted.

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@
5454
"eslint-config-prettier": "^9.0.0",
5555
"eslint-plugin-react": "^7.33.2",
5656
"html-webpack-plugin": "^5.5.3",
57-
"husky": "^4.3.0",
5857
"monaco-editor-webpack-plugin": "^7.1.0",
5958
"npm-run-all": "^4.1.5",
6059
"postcss": "^8.4.31",

src/api/index.ts

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ export { GroupRoleAPI } from './group-role';
2121
export { ImportAPI } from './import';
2222
export { LegacyNamespaceAPI } from './legacy-namespace';
2323
export { LegacyRoleAPI } from './legacy-role';
24-
export { MyDistributionAPI } from './my-distribution';
2524
export { MyNamespaceAPI } from './my-namespace';
2625
export { NamespaceAPI } from './namespace';
2726
export { PulpAPI } from './pulp';

src/api/my-distribution.ts

-7
This file was deleted.

src/paths.ts

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { ParamHelper, ParamType } from 'src/utilities';
22

33
export function formatPath(path: Paths, data = {}, params?: ParamType) {
44
let url = (path as string) + '/';
5+
url = url.replaceAll('//', '/');
56

67
for (const k of Object.keys(data)) {
78
url = url.replace(':' + k, encodeURIComponent(data[k]));

0 commit comments

Comments
 (0)