WikiController raises a undefined method custom_workflow_messages' for #<WikiContentVersion:0x00007f7b45c567d8> error if @content` assigned to the WikiContentVersion. Since plugin doesn't support WikiContentVersion just skip it.

This commit is contained in:
Makurin 2022-11-08 13:21:51 +03:00
parent 1798671c8b
commit d1cf47c8c6

View File

@ -73,7 +73,9 @@ module RedmineCustomWorkflows
elsif @page
objects = [@page]
end
if @content
# @content either WikiContent or WikiContentVersion
# but plugin does not patch nor work with WikiContentVersion
if @content.is_a? WikiContent
objects ||= []
objects << @content
end