@5minds/node-red-contrib-processcube 1.7.6-feature-581893-m6tfilg9 → 1.7.6-feature-1eae0e-m6ufq2sz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/check-authorization.html +3 -14
- package/package.json +1 -1
package/check-authorization.html
CHANGED
@@ -6,15 +6,7 @@
|
|
6
6
|
name: { value: '' },
|
7
7
|
engine: { value: '', type: 'processcube-engine-config' },
|
8
8
|
options: {
|
9
|
-
value: [{
|
10
|
-
// validate: function (v) {
|
11
|
-
// const unique = new Set(
|
12
|
-
// v.map(function (o) {
|
13
|
-
// return o.label;
|
14
|
-
// })
|
15
|
-
// );
|
16
|
-
// return v.length === unique.size;
|
17
|
-
// },
|
9
|
+
value: [{ claim: '' }],
|
18
10
|
},
|
19
11
|
},
|
20
12
|
inputs: 1,
|
@@ -131,7 +123,7 @@
|
|
131
123
|
<ol id="node-input-option-container" style="list-style-type:none; margin:0;"></ol>
|
132
124
|
</div>
|
133
125
|
</div>
|
134
|
-
<!-- Add
|
126
|
+
<!-- Add Claim Button -->
|
135
127
|
<div class="form-row">
|
136
128
|
<a href="#" class="editor-button editor-button-small" id="node-input-add-option" style="margin-top:4px; margin-left:103px;"><i class="fa fa-plus"></i> <span>action</span></a>
|
137
129
|
</div>
|
@@ -144,10 +136,7 @@ A Node that checks if a user has the specified claims
|
|
144
136
|
|
145
137
|
: name (string): name of the node
|
146
138
|
: engine (string): the engine to connect to
|
147
|
-
|
148
|
-
## Outputs
|
149
|
-
|
150
|
-
: payload (string): The id of the processinstance that was terminated.
|
139
|
+
: claims (list of strings): the claims the user needs to be authorized
|
151
140
|
|
152
141
|
### References
|
153
142
|
|