From 582d4abc12cf7c94aed6d4885a42d68a00c9d5cc Mon Sep 17 00:00:00 2001 From: Yuri Rudman Date: Tue, 22 May 2018 22:45:22 -0400 Subject: [PATCH] MiqRequest was added to RBAC in https://github.com/ManageIQ/manageiq/pull/17208 but did not include ActAsTaggable concern. Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1576129 --- app/models/miq_request.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/models/miq_request.rb b/app/models/miq_request.rb index 1b87f26d491..abe8e981e61 100644 --- a/app/models/miq_request.rb +++ b/app/models/miq_request.rb @@ -12,6 +12,8 @@ class MiqRequest < ApplicationRecord has_many :miq_approvals, :dependent => :destroy has_many :miq_request_tasks, :dependent => :destroy + acts_as_miq_taggable + alias_attribute :state, :request_state serialize :options, Hash