[ARVADOS] updated: 8ebf6b6a0911f336e5cb5a31ac8aa8bb4cc0d6d1
git at public.curoverse.com
git at public.curoverse.com
Tue Feb 11 20:07:49 EST 2014
Summary of changes:
.../app/controllers/application_controller.rb | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
via 8ebf6b6a0911f336e5cb5a31ac8aa8bb4cc0d6d1 (commit)
from 5e02059d616d0e4906fe281379d26c69db1a6f23 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 8ebf6b6a0911f336e5cb5a31ac8aa8bb4cc0d6d1
Author: Tom Clegg <tom at curoverse.com>
Date: Tue Feb 11 17:07:39 2014 -0800
Show first 200 items on index page, not 1000.
diff --git a/apps/workbench/app/controllers/application_controller.rb b/apps/workbench/app/controllers/application_controller.rb
index 843cf0d..02ebc8b 100644
--- a/apps/workbench/app/controllers/application_controller.rb
+++ b/apps/workbench/app/controllers/application_controller.rb
@@ -57,7 +57,7 @@ class ApplicationController < ActionController::Base
end
def index
- @objects ||= model_class.limit(1000).all
+ @objects ||= model_class.limit(200).all
respond_to do |f|
f.json { render json: @objects }
f.html { render }
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list