debian-mirror-gitlab/app/graphql/resolvers/projects/branch_rules_resolver.rb

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

20 lines
472 B
Ruby
Raw Normal View History

2022-10-11 01:57:18 +05:30
# frozen_string_literal: true
module Resolvers
module Projects
class BranchRulesResolver < BaseResolver
2022-11-25 23:54:43 +05:30
include LooksAhead
2022-10-11 01:57:18 +05:30
type Types::Projects::BranchRuleType.connection_type, null: false
alias_method :project, :object
2022-11-25 23:54:43 +05:30
def resolve_with_lookahead(**args)
apply_lookahead(project.protected_branches)
2022-10-11 01:57:18 +05:30
end
end
end
end
2022-11-25 23:54:43 +05:30
Resolvers::Projects::BranchRulesResolver.prepend_mod_with('Resolvers::Projects::BranchRulesResolver')