mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-07-02 03:40:38 +08:00
10 lines
329 B
Python
10 lines
329 B
Python
from pr_agent.identity_providers.identity_provider import Eligibility, IdentityProvider
|
|
|
|
|
|
class DefaultIdentityProvider(IdentityProvider):
|
|
def verify_eligibility(self, git_provider, git_provider_id, pr_url):
|
|
return Eligibility.ELIGIBLE
|
|
|
|
def inc_invocation_count(self, git_provider, git_provider_id):
|
|
pass
|