We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
?id
_:id
1 parent 2269775 commit 7fff816Copy full SHA for 7fff816
1 file changed
app/controllers/index.js
@@ -197,14 +197,15 @@ export default class IndexController extends Controller {
197
);
198
matches.rules.push(`
199
{
200
- _:id ex:event ex:Submit.
+ ?id ex:event ex:Submit.
201
} => {
202
- ex:HttpPolicy pol:policy ex:Pol .
203
- ex:Pol a fno:Execution ;
+ ex:HttpPolicy pol:policy [
+ a fno:Execution ;
204
fno:executes ex:httpRequest ;
205
ex:method "${this.model.policyMethod}" ;
206
ex:url <${this.model.policyURL}> ;
207
- ex:contentType "${this.model.policyContentType}" .
+ ex:contentType "${this.model.policyContentType}"
208
+ ] .
209
} .
210
`);
211
matches.prefixes = this.addIfNotIncluded(
0 commit comments