scinote-web/app/models/repository_stock_consumption_value.rb
2022-01-28 13:19:37 +01:00

9 lines
206 B
Ruby

# frozen_string_literal: true
class RepositoryStockConsumptionValue < RepositoryStockValue
def snapshot!
# Snapshots should be done from RepositoryStockValue
railse NotImplementedError
end
end