Merge remote-tracking branch 'origin/master' into 1971-show-image-thumbnails
[arvados.git] / apps / workbench / app / controllers / api_client_authorizations_controller.rb
1 class ApiClientAuthorizationsController < ApplicationController
2   def index
3     @objects = model_class.all.to_ary.reject do |x|
4       x.api_client_id == 0 or (x.expires_at and x.expires_at < Time.now) rescue false
5     end
6     super
7   end
8
9   def index_pane_list
10     %w(Recent Help)
11   end
12
13 end