gitlab-org--gitlab-foss/app/models/lfs_file_lock.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
339 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class LfsFileLock < ApplicationRecord
2018-02-07 13:00:53 +00:00
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