X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/35ade8a042094a27e2ca5cfd5e9754aa3513410c..8ca0b1449607ded51e908481cc4660c20f43a777:/apps/workbench/app/models/collection.rb?ds=sidebyside diff --git a/apps/workbench/app/models/collection.rb b/apps/workbench/app/models/collection.rb index b5347dce00..09af60fb9c 100644 --- a/apps/workbench/app/models/collection.rb +++ b/apps/workbench/app/models/collection.rb @@ -1,3 +1,7 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + require "arvados/keep" class Collection < ArvadosBase @@ -35,7 +39,11 @@ class Collection < ArvadosBase end def content_summary - ApplicationController.helpers.human_readable_bytes_html(total_bytes) + " " + super + if total_bytes > 0 + ApplicationController.helpers.human_readable_bytes_html(total_bytes) + " " + super + else + super + " modified at " + modified_at.to_s + end end def total_bytes @@ -67,11 +75,7 @@ class Collection < ArvadosBase end def editable_attributes - %w(name description manifest_text) - end - - def self.creatable? - false + %w(name description manifest_text filename) end def provenance @@ -90,24 +94,15 @@ class Collection < ArvadosBase end end - def portable_data_hash - if self[:portable_data_hash].nil? - return self[:uuid] - else - super - end - end - def friendly_link_name lookup=nil - if self.respond_to? :name - self.name - else - self.portable_data_hash - end + name || portable_data_hash end def textile_attributes [ 'description' ] end + def untrash + arvados_api_client.api(self.class, "/#{self.uuid}/untrash", {"ensure_unique_name" => true}) + end end