Welcome to mirror list, hosted at ThFree Co, Russian Federation.

resource_weight_event.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bbabd54325e3d6f5bec90f31892135a888fa5d54 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class ResourceWeightEvent < ResourceEvent
  validates :issue, presence: true

  include IssueResourceEvent
end