mirror of
https://github.com/jambonz/jambonz-node.git
synced 2025-12-19 05:17:49 +00:00
16 lines
356 B
JavaScript
16 lines
356 B
JavaScript
const RestEntity = require('./rest-entity');
|
|
|
|
class Applications extends RestEntity {
|
|
constructor(accountSid, apiKey, opts) {
|
|
super('Applications', accountSid, apiKey, opts);
|
|
this.enabledOperations = [
|
|
RestEntity.create,
|
|
RestEntity.retrieve,
|
|
RestEntity.list,
|
|
RestEntity.delete
|
|
];
|
|
}
|
|
}
|
|
|
|
module.exports = Applications;
|