We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e851588 commit 1fe50a3Copy full SHA for 1fe50a3
2 files changed
OpenFlow/src/DatabaseConnection.ts
@@ -2027,7 +2027,7 @@ export class DatabaseConnection {
2027
let result: boolean = false;
2028
const authorized = this.EntityRestrictions.filter(x => x.IsAuthorized(user) && (x.collection == collection || x.collection == ""));
2029
const matches = authorized.filter(x => x.IsMatch(item) && (x.collection == collection || x.collection == ""));
2030
- const copyperm = authorized.filter(x => x.copyperm && (x.collection == collection || x.collection == ""));
+ const copyperm = matches.filter(x => x.copyperm && (x.collection == collection || x.collection == ""));
2031
if (!defaultAllow && matches.length == 0) return false; // no hits, if not allowed return false
2032
if (matches.length > 0) result = true;
2033
gulpfile.js
@@ -188,12 +188,12 @@ gulp.task("compose", shell.task([
188
// 'docker push openiap/openflow:' + version,
189
'docker push openiap/openflow:edge1.3',
190
191
- // 'echo "Build openiap/nodered"',
192
- // 'cd OpenFlowNodeRED && docker build -t openiap/nodered:edge .',
193
- // // 'docker tag openiap/nodered:edge openiap/nodered:' + version,
194
- // 'echo "Push openiap/nodered"',
195
- // 'docker push openiap/nodered:edge',
196
- // // 'docker push openiap/nodered:' + version,
+ 'echo "Build openiap/nodered"',
+ 'cd OpenFlowNodeRED && docker build -t openiap/nodered:edge .',
+ // 'docker tag openiap/nodered:edge openiap/nodered:' + version,
+ 'echo "Push openiap/nodered"',
+ 'docker push openiap/nodered:edge',
+ // 'docker push openiap/nodered:' + version,
197
198
// 'echo "Build openiap/nodered-puppeteer"',
199
// 'cd OpenFlowNodeRED && docker build -t openiap/nodered-puppeteer:edge -f Dockerfilepuppeteer .',
0 commit comments