mirror of
https://github.com/redmine/redmine.git
synced 2025-11-03 20:06:24 +01:00
use "do end" instead of {} at BoardsController
git-svn-id: http://svn.redmine.org/redmine/trunk@20299 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user