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

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

class GroupBadge < Badge
  belongs_to :group

  validates :group, presence: true
end