Blame view

common/modules/comment/Permissions.php 346 Bytes
3f2bc3d0   Administrator   first commit
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';

      }