Method: ReWorkflowRulesController#move_down

Defined in:
app/controllers/re_workflow_rules_controller.rb

#move_downObject



124
125
126
127
128
129
130
131
132
133
134
135
136
# File 'app/controllers/re_workflow_rules_controller.rb', line 124

def move_down
  @re_rule.move_lower
  flash[:success] = 'Rule Moved Down.'      
  
  respond_to do |format|
    format.html do          
      redirect_to(change_re_workflow_path(@re_workflow))
    end  
    format.js do
      render :action => "update"
    end
  end
end