15 lines
253 B
PHP
15 lines
253 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Created by PhpStorm.
|
||
|
* User: mkoch
|
||
|
* Date: 3/12/2017
|
||
|
* Time: 12:11 PM
|
||
|
*/
|
||
|
|
||
|
namespace BusinessLogic\Security;
|
||
|
|
||
|
|
||
|
class UserPrivilege {
|
||
|
const CAN_VIEW_TICKETS = 'can_view_tickets';
|
||
|
const CAN_REPLY_TO_TICKETS = 'can_reply_tickets';
|
||
|
}
|