Ivan - Add all ticket events to Ticketevent datastore [skip ci]
This commit is contained in:
parent
642409a47b
commit
1f7efd4086
|
@ -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'
|
||||
];
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue