mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-23 00:45:28 +00:00
11 lines
263 B
Ruby
11 lines
263 B
Ruby
# frozen_string_literal: true
|
|
|
|
class GroupDeletionSchedule < ApplicationRecord
|
|
belongs_to :group
|
|
belongs_to :deleting_user, foreign_key: 'user_id', class_name: 'User'
|
|
|
|
validates :marked_for_deletion_on, presence: true
|
|
end
|
|
|
|
GroupDeletionSchedule.prepend_mod
|