mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 10:06:53 +08:00
10 lines
275 B
Ruby
10 lines
275 B
Ruby
class ResultAsset < ActiveRecord::Base
|
|
validates :result, :asset, presence: true
|
|
|
|
belongs_to :result, inverse_of: :result_asset
|
|
belongs_to :asset, inverse_of: :result_asset, dependent: :destroy
|
|
|
|
def space_taken
|
|
asset.present? ? asset.estimated_size : 0
|
|
end
|
|
end
|