Skip to content

Commit

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

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

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

0 comments on commit 8c7cc8a

Please sign in to comment.