Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion registry-public/package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: registry-public
version: '4.26.0'
version: '4.26.1'
synopsis: Registry Public
description: Registry Public
category: Web
Expand Down
2 changes: 1 addition & 1 deletion registry-server/package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: registry-server
version: '4.26.0'
version: '4.26.1'
synopsis: Engine Registry
description: Engine Registry
category: Web
Expand Down
2 changes: 1 addition & 1 deletion registry-server/src/Registry/Api/Handler/Swagger/Api.hs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ swagger =
s._swaggerInfo
{ _infoTitle = "Registry API"
, _infoDescription = Just "API specification for Registry"
, _infoVersion = "4.26.0"
, _infoVersion = "4.26.1"
, _infoLicense =
Just $
License
Expand Down
2 changes: 1 addition & 1 deletion shared-common/package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: shared-common
version: '4.26.0'
version: '4.26.1'
synopsis: Engine Shared
description: Engine Shared
category: Web
Expand Down
2 changes: 1 addition & 1 deletion wizard-public/package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: wizard-public
version: '4.26.0'
version: '4.26.1'
synopsis: Wizard Public
description: Wizard Public
category: Web
Expand Down
2 changes: 1 addition & 1 deletion wizard-server/package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: wizard-server
version: '4.26.0'
version: '4.26.1'
synopsis: Engine Wizard
description: Engine Wizard
category: Web
Expand Down
2 changes: 1 addition & 1 deletion wizard-server/src/Wizard/Api/Handler/Swagger/Api.hs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ swagger =
s._swaggerInfo
{ _infoTitle = "Wizard API"
, _infoDescription = Just "API specification for Wizard"
, _infoVersion = "4.26.0"
, _infoVersion = "4.26.1"
, _infoLicense =
Just $
License
Expand Down
8 changes: 4 additions & 4 deletions wizard-server/src/Wizard/Database/DAO/Project/ProjectDAO.hs
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ findProjectDetail uuid = do
\ FROM project_action \
\ LEFT JOIN pkg k ON true \
\ WHERE project_action.metamodel_version = ${projectActionMetamodelVersion} \
\ AND exists (SELECT 1 \
\ AND tenant_uuid = '${tenantUuid}' AND exists (SELECT 1 \
\ FROM jsonb_array_elements(project_action.allowed_packages) AS spec(elem) \
\ WHERE ((spec.elem ->> 'kmId') IS NULL OR (spec.elem ->> 'kmId') = k.km_id) \
\ AND ((spec.elem ->> 'orgId') IS NULL OR (spec.elem ->> 'orgId') = k.org_id) \
Expand All @@ -408,7 +408,7 @@ findProjectDetail uuid = do
\ FROM project_importer \
\ LEFT JOIN pkg k ON true \
\ WHERE project_importer.metamodel_version = ${projectImporterMetamodelVersion} \
\ AND exists (SELECT 1 \
\ AND tenant_uuid = '${tenantUuid}' AND exists (SELECT 1 \
\ FROM jsonb_array_elements(project_importer.allowed_packages) AS spec(elem) \
\ WHERE ((spec.elem ->> 'kmId') IS NULL OR (spec.elem ->> 'kmId') = k.km_id) \
\ AND ((spec.elem ->> 'orgId') IS NULL OR (spec.elem ->> 'orgId') = k.org_id) \
Expand Down Expand Up @@ -461,7 +461,7 @@ findProjectDetailQuestionnaire uuid = do
\ FROM project_action \
\ LEFT JOIN pkg k ON true \
\ WHERE project_action.metamodel_version = ${projectActionMetamodelVersion} \
\ AND exists (SELECT 1 \
\ AND tenant_uuid = '${tenantUuid}' AND exists (SELECT 1 \
\ FROM jsonb_array_elements(project_action.allowed_packages) AS spec(elem) \
\ WHERE ((spec.elem ->> 'kmId') IS NULL OR (spec.elem ->> 'kmId') = k.km_id) \
\ AND ((spec.elem ->> 'orgId') IS NULL OR (spec.elem ->> 'orgId') = k.org_id) \
Expand All @@ -479,7 +479,7 @@ findProjectDetailQuestionnaire uuid = do
\ FROM project_importer \
\ LEFT JOIN pkg k ON true \
\ WHERE project_importer.metamodel_version = ${projectImporterMetamodelVersion} \
\ AND exists (SELECT 1 \
\ AND tenant_uuid = '${tenantUuid}' AND exists (SELECT 1 \
\ FROM jsonb_array_elements(project_importer.allowed_packages) AS spec(elem) \
\ WHERE ((spec.elem ->> 'kmId') IS NULL OR (spec.elem ->> 'kmId') = k.km_id) \
\ AND ((spec.elem ->> 'orgId') IS NULL OR (spec.elem ->> 'orgId') = k.org_id) \
Expand Down
Loading