parent
388276c17a
commit
c97e795127
|
|
@ -133,6 +133,9 @@ function args_to_features(obj) {
|
|||
res.arguments[fmt_escape_html(k)] = fmt_escape_html(obj.arguments[k]);
|
||||
}
|
||||
}
|
||||
if (obj.exclusive) {
|
||||
res['exclusive'] = true;
|
||||
}
|
||||
if (obj.durable) {
|
||||
res['durable'] = true;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -26,6 +26,7 @@ var KNOWN_ARGS = {'alternate-exchange': {'short': 'AE', 'type': 'string'
|
|||
// Things that are like arguments that we format the same way in listings.
|
||||
var IMPLICIT_ARGS = {'durable': {'short': 'D', 'type': 'boolean'},
|
||||
'auto-delete': {'short': 'AD', 'type': 'boolean'},
|
||||
'exclusive': {'short': 'E', 'type': 'boolean'},
|
||||
'internal': {'short': 'I', 'type': 'boolean'}};
|
||||
|
||||
// Both the above
|
||||
|
|
|
|||
Loading…
Reference in New Issue