Ivan - Add all ticket events to Ticketevent datastore [skip ci]

This commit is contained in:
Ivan Diaz 2016-10-23 15:31:48 -03:00
parent 642409a47b
commit 1f7efd4086
1 changed files with 6 additions and 5 deletions

View File

@ -5,20 +5,21 @@ class Ticketevent extends DataStore {
const COMMENT = 'COMMENT';
const ASSIGN = 'ASSIGN';
const UNASSIGN = 'UNASSIGN';
const UN_ASSIGN = 'UN_ASSIGN';
const CLOSE = 'CLOSE';
const REOPEN = 'REOPEN';
const RE_OPEN = 'RE_OPEN';
const DEPARTMENT_CHANGED = 'DEPARTMENT_CHANGED';
const PRIORITY_CHANGED = 'PRIORITY_CHANGED';
private static function getEventTypes() {
return [
'COMMENT',
'UNASSIGN',
'ASSIGN',
'UN_ASSIGN',
'CLOSE',
'REOPEN',
'RE_OPEN',
'DEPARTMENT_CHANGED',
'PRIORITY_CHANGED',
'PRIORITY_CHANGED'
];
}