فهرست منبع

Fix multiple submissions setting

Angus McLeod 7 سال پیش
والد
کامیت
c40bf06953
2فایلهای تغییر یافته به همراه2 افزوده شده و 3 حذف شده
  1. 1 2
      lib/builder.rb
  2. 1 1
      lib/wizard_edits.rb

+ 1 - 2
lib/builder.rb

@@ -35,8 +35,7 @@ class CustomWizard::Builder
   end
 
   def build
-    unless (@wizard.completed? && !@wizard.respond_to?(:multiple_submissions)) ||
-           !@steps
+    unless (@wizard.completed? && !@wizard.multiple_submissions) || !@steps
       @steps.each do |s|
         @wizard.append_step(s['id']) do |step|
           step.title = s['title'] if s['title']

+ 1 - 1
lib/wizard_edits.rb

@@ -71,7 +71,7 @@ end
   end
 
   def include_completed?
-    object.completed? && !object.respond_to?(:multiple_submissions) && !scope.current_user.admin?
+    object.completed? && !object.multiple_submissions && !scope.current_user.admin?
   end
 
   def include_start?