Skip to content

Commit

Permalink
Add missing permission 'message'
Browse files Browse the repository at this point in the history
  • Loading branch information
stolman-digitpaint committed Apr 19, 2022
1 parent ecc2877 commit 2cb7082
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion views/table_permissions.tt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
class = "btn btn-default"
label = "Create group"
}];

%]
<div class="content-block__main">
<div class="content-block__main-content">
Expand Down Expand Up @@ -134,6 +133,11 @@
name = "Manage fields",
field_id = group.id _ "_layout",
is_checked = layout_obj.group_has(group.id, 'layout') ? 1 : 0
}, {
id = group.id _ "_message" ,
name = "Send messages",
field_id = group.id _ "_message",
is_checked = layout_obj.group_has(group.id, 'message') ? 1 : 0
}]
hide_group = 1;
%]
Expand Down

0 comments on commit 2cb7082

Please sign in to comment.