gitlab-org--gitlab-foss/app/services/lfs/locks_finder_service.rb

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

22 lines
456 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2018-02-07 13:00:53 +00:00
module Lfs
class LocksFinderService < BaseService
def execute
success(locks: find_locks)
rescue StandardError => ex
2018-02-07 13:00:53 +00:00
error(ex.message, 500)
end
private
# rubocop: disable CodeReuse/ActiveRecord
2018-02-07 13:00:53 +00:00
def find_locks
options = params.slice(:id, :path).to_h.compact.symbolize_keys
2018-02-07 13:00:53 +00:00
project.lfs_file_locks.where(options)
end
# rubocop: enable CodeReuse/ActiveRecord
2018-02-07 13:00:53 +00:00
end
end