Blame view

common/modules/comment/Permissions.php 335 Bytes
b82db04a   Yarik   test
1
2
3
4
5
6
7
8
9
10
  <?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';
2d107e9e   Yarik   test
11
          const DELETE_OWN = 'artbox_comment.delete_own';
b82db04a   Yarik   test
12
      }