Skip to content

Commit

Permalink
Allow Automate/Request without Service/Request rights
Browse files Browse the repository at this point in the history
  • Loading branch information
ZitaNemeckova committed Sep 5, 2019
1 parent d1ed3e8 commit eb52342
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions app/controllers/miq_request_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -461,8 +461,10 @@ def approver?
end

def rbac_feature_id(feature_id)
return feature_id unless %w[ae host].include?(params[:typ])
"#{params[:typ]}_#{feature_id}"
# set this to be used to identify which Requests subtab was clicked
@request_tab = params[:typ].present? ? params[:typ] : session[:request_tab] if @request_tab.nil?
return feature_id unless %w[ae host].include?(@request_tab)
"#{@request_tab}_#{feature_id}"
end

# Delete all selected or single displayed action(s)
Expand Down

0 comments on commit eb52342

Please sign in to comment.