Skip to content

Commit

Permalink
EPMRPP-90359 || fix urls organizations
Browse files Browse the repository at this point in the history
  • Loading branch information
BlazarQSO committed May 7, 2024
1 parent 8c7cc8a commit 9726c60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/common/urls.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export const URLS = {
apiKeyById: (userId, apiKeyId) => `${urlCommonBase}users/${userId}/api-keys/${apiKeyId}`,

organizationsList: (name) => `${urlBase}organizations${getQueryParams({ name })}`,
organizationsById: (organizationId) => `${urlBase}organizations${organizationId}`,
organizationsById: (organizationId) => `${urlBase}organizations/${organizationId}`,

projectByName: (projectKey) => `${urlBase}project/${projectKey}`,
project: (ids = []) => `${urlBase}project?ids=${ids.join(',')}`,
Expand Down

0 comments on commit 9726c60

Please sign in to comment.