Hi.
Just tried to add silent param to your Message type and it works.
{key:'notification',/**
* Set disable_notification of the message
* @param {boolean} enable
* @return {object} returns the message object
*/value:functionpreview(){varenable=arguments[0]===undefined?true:arguments[0];this.properties.disable_notification=!enable;returnthis;}}
Hi.
Just tried to add silent param to your Message type and it works.
``` javascript
{
key: 'notification',
/**
* Set disable_notification of the message
* @param {boolean} enable
* @return {object} returns the message object
*/
value: function preview() {
var enable = arguments[0] === undefined ? true : arguments[0];
this.properties.disable_notification = !enable;
return this;
}
}
```
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Hi.
Just tried to add silent param to your Message type and it works.