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

lfs_file_lock.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 431d37e12e99003fd224b96567819e46dda68b7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

class LfsFileLock < ActiveRecord::Base
  belongs_to :project
  belongs_to :user

  validates :project_id, :user_id, :path, presence: true

  def can_be_unlocked_by?(current_user, forced = false)
    return true if current_user.id == user_id

    forced && current_user.can?(:admin_project, project)
  end
end