Blame view

common/modules/comment/Permissions.php 335 Bytes
a8370482   Alexander Karnovsky   init project
1
2
3
4
5
6
7
8
9
10
11
12
  <?php
      namespace common\modules\comment;
  
      class Permissions
      {
  
          const CREATE = 'artbox_comment.create';
          const UPDATE = 'artbox_comment.update';
          const DELETE = 'artbox_comment.delete';
          const UPDATE_OWN = 'artbox_comment.update_own';
          const DELETE_OWN = 'artbox_comment.delete_own';
      }