debian-mirror-gitlab/app/models/lfs_objects_project.rb

29 lines
698 B
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2019-07-07 11:18:12 +05:30
class LfsObjectsProject < ApplicationRecord
2020-04-22 19:07:51 +05:30
include ::EachBatch
2015-11-26 14:37:03 +05:30
belongs_to :project
belongs_to :lfs_object
validates :lfs_object_id, presence: true
2019-09-04 21:01:54 +05:30
validates :lfs_object_id, uniqueness: { scope: [:project_id, :repository_type], message: "already exists in repository" }
2015-11-26 14:37:03 +05:30
validates :project_id, presence: true
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
after_commit :update_project_statistics, on: [:create, :destroy]
2017-08-17 22:00:37 +05:30
2019-09-04 21:01:54 +05:30
enum repository_type: {
project: 0,
wiki: 1,
design: 2 ## EE-specific
}
2020-03-13 15:44:24 +05:30
scope :project_id_in, ->(ids) { where(project_id: ids) }
2017-08-17 22:00:37 +05:30
private
def update_project_statistics
ProjectCacheWorker.perform_async(project_id, [], [:lfs_objects_size])
end
2015-11-26 14:37:03 +05:30
end