Merge pull request #48 from laurynas-karvelis/feature/allow-sending-disabled-notification-messages
feature: allow sending silent notifications
This commit was merged in pull request #48.
	This commit is contained in:
		@@ -81,6 +81,15 @@ export default class Base extends EventEmitter {
 | 
			
		||||
    return bot.api[this.method](this.properties);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  /**
 | 
			
		||||
   * Set disable_notification property to true (send a silent notification)
 | 
			
		||||
   * @returns {object} returns the message object
 | 
			
		||||
   */
 | 
			
		||||
  disableNotification() {
 | 
			
		||||
    this.properties.disable_notification = true;
 | 
			
		||||
    return this;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  /**
 | 
			
		||||
   * Returns properties of the object
 | 
			
		||||
   * @return {object} properties of object
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user