debian-mirror-gitlab/app/models/user_highest_role.rb
2020-04-08 18:37:08 +05:30

7 lines
211 B
Ruby

# frozen_string_literal: true
class UserHighestRole < ApplicationRecord
belongs_to :user, optional: false
validates :highest_access_level, allow_nil: true, inclusion: { in: Gitlab::Access.all_values }
end