We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eab8393 commit c31f5a0Copy full SHA for c31f5a0
1 file changed
app/models/flex/case.rb
@@ -38,7 +38,9 @@ def self.business_process
38
# Returns the application form class for this case class.
39
# Subclasses can override this method to customize the application form class naming.
40
def self.application_form_class
41
- name.sub("Case", "ApplicationForm").constantize
+ # We want to return the class name as a string due to a build issue, which is resolvable in upgrading to Rails 8.
42
+ # Method call will need to constantize downstream.
43
+ name.sub("Case", "ApplicationForm")
44
end
45
attribute :application_form_id, :uuid
46
0 commit comments