Small fixes and improvements on Zendesk-Node

This commit is contained in:
Jan Oberhauser
2020-01-07 21:15:37 -06:00
parent 150c32e349
commit 97cc3af4c3
6 changed files with 30 additions and 51 deletions

View File

@@ -21,22 +21,22 @@ export const ticketOperations = [
{
name: 'Update',
value: 'update',
description: 'Update a ticket'
description: 'Update a ticket',
},
{
name: 'Get',
value: 'get',
description: 'Get a ticket'
description: 'Get a ticket',
},
{
name: 'Get All',
value: 'getAll',
description: 'Get all tickets'
description: 'Get all tickets',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete a ticket'
description: 'Delete a ticket',
},
],
default: 'create',