From: Toshi MARUYAMA Date: Sun, 8 Nov 2020 13:02:02 +0000 (+0000) Subject: use "do end" instead of {} at BoardsController X-Git-Tag: 4.2.0~519 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f5f61854ed80a956b87b10c16a5964ce7854437c;p=redmine.git use "do end" instead of {} at BoardsController git-svn-id: http://svn.redmine.org/redmine/trunk@20299 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/controllers/boards_controller.rb b/app/controllers/boards_controller.rb index 86eb3d278..d3b02e0ff 100644 --- a/app/controllers/boards_controller.rb +++ b/app/controllers/boards_controller.rb @@ -37,7 +37,7 @@ class BoardsController < ApplicationController def show respond_to do |format| - format.html { + format.html do sort_init 'updated_on', 'desc' sort_update 'created_on' => "#{Message.table_name}.id", 'replies' => "#{Message.table_name}.replies_count", @@ -54,15 +54,15 @@ class BoardsController < ApplicationController to_a @message = Message.new(:board => @board) render :action => 'show', :layout => !request.xhr? - } - format.atom { + end + format.atom do @messages = @board.messages. reorder(:id => :desc). includes(:author, :board). limit(Setting.feeds_limit.to_i). to_a render_feed(@messages, :title => "#{@project}: #{@board}") - } + end end end @@ -89,10 +89,10 @@ class BoardsController < ApplicationController @board.safe_attributes = params[:board] if @board.save respond_to do |format| - format.html { + format.html do flash[:notice] = l(:notice_successful_update) redirect_to_settings_in_projects - } + end format.js { head 200 } end else