Added div for histogram and style for it.
[arvados.git] / apps / workbench / app / controllers / keep_disks_controller.rb
1 class KeepDisksController < ApplicationController
2   def create
3     defaults = { is_readable: true, is_writable: true }
4     @object = KeepDisk.new defaults.merge(params[:keep_disk] || {})
5     super
6   end
7   def index
8     # TODO(misha):Retrieve the histogram info
9     super
10   end
11 end