Chatwoot/app/views/fields/account_features_field/_form.html.erb
Sojan Jose 97583e410c
feat: Ability to manage account features from super admin (#5455)
- This PR adds the ability to enable and disable features for an account from the super admin.
2022-09-19 14:57:21 -07:00

8 lines
264 B
Text

<div class="field-unit__label">
<%= f.label field.attribute %>
</div>
<div class="field-unit__field">
<% field.data.each do |key,val| %>
<%= key %>: <%= check_box "enabled_features", "feature_#{key}", { checked: val }, true, false %>
<% end %>
</div>