Commit 896b8d76 authored by Akshay Bharambe's avatar Akshay Bharambe
Browse files

Fix: Not able to call query beacuse of branch

parent 365745bf
Branches
Tags
2 merge requests!220Release v2.0.0 alpha,!219Add: Support for branches
Showing with 5 additions and 1 deletion
......@@ -55,7 +55,11 @@ func executeServiceWithBranch(name, branch string, data []byte, isRestricted, is
var ab *servicebuildermdl.AbstractBusinessLogicHolder
var found bool
activity := ConcatenateEntityWithBranch(name, branch)
// for calling queries as queries are not associated with any branch
activity := name
if name != "FetchQueryData" {
activity = ConcatenateEntityWithBranch(name, branch)
}
if isRestricted {
if isRoleBased {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment