Skip to content

Commit 282a195

Browse files
committed
fix source indent of SysController
git-svn-id: http://svn.redmine.org/redmine/trunk@20086 e93f8b46-1217-0410-a6f0-8f06a7374b81
1 parent 70e470f commit 282a195

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

app/controllers/sys_controller.rb

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,9 @@ def projects
2424
p = Project.active.has_module(:repository).
2525
order("#{Project.table_name}.identifier").preload(:repository).to_a
2626
# extra_info attribute from repository breaks activeresource client
27-
render :json => p.to_json(
28-
:only => [:id, :identifier, :name, :is_public, :status],
29-
:include => {:repository => {:only => [:id, :url]}}
30-
)
27+
render :json =>
28+
p.to_json(:only => [:id, :identifier, :name, :is_public, :status],
29+
:include => {:repository => {:only => [:id, :url]}})
3130
end
3231

3332
def create_project_repository

0 commit comments

Comments
 (0)