fix(manager): regression on accesible actions introduced in 0ccb18
This commit is contained in:
parent
dbb34d2b36
commit
853cddd043
5 changed files with 5 additions and 5 deletions
|
@ -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' %>
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
|
@ -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' %>
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
Loading…
Reference in a new issue