You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					14 lines
				
				544 B
			
		
		
			
		
	
	
					14 lines
				
				544 B
			| 
											3 years ago
										 | var inherits = require('util').inherits; | ||
|  | var TaskRouterCapability = require('./TaskRouterCapability'); | ||
|  | 
 | ||
|  | function TaskRouterTaskQueueCapability(accountSid, authToken, workspaceSid, taskQueueSid) { | ||
|  |     TaskRouterCapability.call(this, accountSid, authToken, workspaceSid, taskQueueSid); | ||
|  | } | ||
|  | inherits(TaskRouterTaskQueueCapability, TaskRouterCapability); | ||
|  | 
 | ||
|  | TaskRouterTaskQueueCapability.prototype._setupResource = function() { | ||
|  |     this._resourceUrl = this._baseUrl + '/TaskQueues/' + this.channelId; | ||
|  | } | ||
|  | 
 | ||
|  | module.exports = TaskRouterTaskQueueCapability; |