Merge branch 'master' into 2257-inequality-conditions
[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 end