fix(manager): regression on accesible actions introduced in 0ccb18

This commit is contained in:
Colin Darie 2024-10-02 22:50:14 +02:00
parent dbb34d2b36
commit 853cddd043
No known key found for this signature in database
GPG key ID: 4FB865FDBCA4BCC4
5 changed files with 5 additions and 5 deletions

View file

@ -29,7 +29,7 @@ as well as a link to its edit page.
'Modifier',
[:edit, namespace, page.resource],
class: "button",
) if accessible_action?(:edit, page.resource) && show_action?(:edit, page.resource) %>
) if accessible_action?(page.resource, :edit) %>
<%= link_to 'Réinviter', reinvite_manager_instructeur_path(instructeur), method: :post, class: 'button' %>

View file

@ -78,7 +78,7 @@ to display a collection of resources in an HTML table.
<% collection_presenter.attributes_for(resource).each do |attribute| %>
<td class="cell-data cell-data--<%= attribute.html_class %>">
<% if show_action? :show, resource -%>
<% if accessible_action?(resource, :show) -%>
<a href="<%= polymorphic_path([namespace, resource]) -%>"
tabindex="-1"
class="action-show"

View file

@ -48,7 +48,7 @@ It renders the `_table` partial to display details about the resources.
),
[:new, namespace, page.resource_path.to_sym],
class: "button",
) if accessible_action?(:new, page.resource) && show_action?(:new, new_resource) %>
) if accessible_action?(page.resource_name, :new) %>
</div>
</header>

View file

@ -31,7 +31,7 @@ as well as a link to its edit page.
t("administrate.actions.edit_resource", name: page.page_title),
[:edit, namespace, page.resource],
class: "button",
) if accessible_action?(:edit, page.resource) %>
) if accessible_action?(page.resource, :edit) %>
<%= link_to 'Aperçu', apercu_admin_procedure_path(procedure), class: 'button' %>

View file

@ -48,7 +48,7 @@ It renders the `_table` partial to display details about the resources.
),
[:new, namespace, page.resource_path.to_sym],
class: "button",
) if accessible_action?(:new, page.resource) && show_action?(:new, new_resource) %>
) if accessible_action?(page.resource_name, :new) %>
</div>
</header>