X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/bc4c747ce6b4cda9928cd318fd050c1171bff475..15dbb3110b3b7cc6712e58bdfbb9a5df7fab1882:/apps/workbench/app/models/arvados_base.rb diff --git a/apps/workbench/app/models/arvados_base.rb b/apps/workbench/app/models/arvados_base.rb index 31a5b58d25..f5be0e1edc 100644 --- a/apps/workbench/app/models/arvados_base.rb +++ b/apps/workbench/app/models/arvados_base.rb @@ -334,8 +334,15 @@ class ArvadosBase < ActiveRecord::Base (ArvadosBase.find(owner_uuid).writable_by.include? current_user.uuid rescue false)))) or false end + # Array of strings that are the names of attributes that can be edited + # with X-Editable. + def editable_attributes + self.class.columns.map(&:name) - + %w(created_at modified_at modified_by_user_uuid modified_by_client_uuid updated_at) + end + def attribute_editable?(attr, ever=nil) - if %w(created_at modified_at modified_by_user_uuid modified_by_client_uuid updated_at).include? attr.to_s + if not editable_attributes.include?(attr.to_s) false elsif not (current_user.andand.is_active) false