René's URL Explorer Experiment


Title: fix(objects): make lists work for filters in all objects by nejch · Pull Request #1420 · python-gitlab/python-gitlab · GitHub

Open Graph Title: fix(objects): make lists work for filters in all objects by nejch · Pull Request #1420 · python-gitlab/python-gitlab

X Title: fix(objects): make lists work for filters in all objects by nejch · Pull Request #1420 · python-gitlab/python-gitlab

Description: Well, this was tedious 😁 Follow-up to #1413. Long term I don't see this being a good idea to maintain manually. Maybe later we can just convert any list we get in the data for ListMixin. Either way - finding candidates was grep -r 'type: Array' lib/api in the gitlab repo, and weeding out non-GET params and endpoints not implemented by python-gitlab: lib/api/resource_access_tokens.rb: requires :scopes, type: Array[String], desc: "The permissions of the token" lib/api/deploy_tokens.rb: requires :scopes, type: Array[String], coerce_with: ::API::Validations::Types::CommaSeparatedToArray.coerce, values: ::DeployToken::AVAILABLE_SCOPES.map(&:to_s), lib/api/deploy_tokens.rb: requires :scopes, type: Array[String], coerce_with: ::API::Validations::Types::CommaSeparatedToArray.coerce, values: ::DeployToken::AVAILABLE_SCOPES.map(&:to_s), lib/api/rubygem_packages.rb: optional :gems, type: Array[String], coerce_with: ::API::Validations::Types::CommaSeparatedToArray.coerce, desc: 'Comma delimited gem names' lib/api/releases.rb: optional :links, type: Array do lib/api/releases.rb: optional :milestones, type: Array[String], coerce_with: ::API::Validations::Types::CommaSeparatedToArray.coerce, desc: 'The titles of the related milestones', default: [] lib/api/releases.rb: optional :milestones, type: Array[String], coerce_with: ::API::Validations::Types::CommaSeparatedToArray.coerce, desc: 'The titles of the related milestones' lib/api/settings.rb: optional :asset_proxy_whitelist, type: Array[String], coerce_with: Validations::Types::CommaSeparatedToArray.coerce, desc: 'Deprecated: Use :asset_proxy_allowlist instead. Assets that match these domain(s) will NOT be proxied. Wildcards allowed. Your GitLab installation URL is automatically whitelisted.' lib/api/settings.rb: optional :asset_proxy_allowlist, type: Array[String], coerce_with: Validations::Types::CommaSeparatedToArray.coerce, desc: 'Assets that match these domain(s) will NOT be proxied. Wildcards allowed. Your GitLab installation URL is automatically allowed.' lib/api/settings.rb: optional :disabled_oauth_sign_in_sources, type: Array[String], coerce_with: Validations::Types::CommaSeparatedToArray.coerce, desc: 'Disable certain OAuth sign-in sources' lib/api/settings.rb: optional :domain_denylist, type: Array[String], coerce_with: Validations::Types::CommaSeparatedToArray.coerce, desc: 'Users with e-mail addresses that match these domain(s) will NOT be able to sign-up. Wildcards allowed. Use separate lines for multiple entries. Ex: domain.com, *.domain.com' lib/api/settings.rb: optional :domain_allowlist, type: Array[String], coerce_with: Validations::Types::CommaSeparatedToArray.coerce, desc: 'ONLY users with e-mail addresses that match these domain(s) will be able to sign-up. Wildcards allowed. Use separate lines for multiple entries. Ex: domain.com, *.domain.com' lib/api/settings.rb: optional :import_sources, type: Array[String], coerce_with: Validations::Types::CommaSeparatedToArray.coerce, lib/api/settings.rb: optional :restricted_visibility_levels, type: Array[String], coerce_with: Validations::Types::CommaSeparatedToArray.coerce, desc: 'Selected levels cannot be used by non-admin users for groups, projects or snippets. If the public level is restricted, user profiles are only visible to logged in users.' lib/api/repositories.rb: requires :refs, type: Array[String], coerce_with: ::API::Validations::Types::CommaSeparatedToArray.coerce lib/api/milestone_responses.rb: optional :iids, type: Array[Integer], coerce_with: ::API::Validations::Types::CommaSeparatedToIntegerArray.coerce, desc: 'The IIDs of the milestones' lib/api/container_registry_event.rb: requires :events, type: Array lib/api/commits.rb: requires :actions, type: Array, desc: 'Actions to perform in commit' do lib/api/helpers/merge_requests_helpers.rb: optional :assignee_username, type: Array[String], check_assignees_count: true, lib/api/helpers/merge_requests_helpers.rb: type: Array[String], lib/api/helpers/projects_helpers.rb: optional :tag_list, type: Array[String], coerce_with: ::API::Validations::Types::CommaSeparatedToArray.coerce, desc: 'The list of tags for a project' lib/api/helpers/snippets_helpers.rb: optional :files, type: Array, desc: 'An array of files' do lib/api/helpers/snippets_helpers.rb: optional :files, type: Array, desc: 'An array of files to update' do lib/api/members.rb: optional :user_ids, type: Array[Integer], coerce_with: ::API::Validations::Types::CommaSeparatedToIntegerArray.coerce, desc: 'Array of user ids to look up for membership' lib/api/members.rb: optional :user_ids, type: Array[Integer], coerce_with: ::API::Validations::Types::CommaSeparatedToIntegerArray.coerce, desc: 'Array of user ids to look up for membership' lib/api/projects.rb: optional :topic, type: Array[String], coerce_with: ::API::Validations::Types::CommaSeparatedToArray.coerce, desc: 'Comma-separated list of topics. Limit results to projects having all topics' lib/api/projects.rb: optional :skip_users, type: Array[Integer], coerce_with: ::API::Validations::Types::CommaSeparatedToIntegerArray.coerce, desc: 'Filter out users with the specified IDs' lib/api/projects.rb: optional :skip_groups, type: Array[Integer], coerce_with: ::API::Validations::Types::CommaSeparatedToIntegerArray.coerce, desc: 'Array of group ids to exclude from list' lib/api/suggestions.rb: requires :ids, type: Array[Integer], coerce_with: ::API::Validations::Types::CommaSeparatedToIntegerArray.coerce, desc: "An array of suggestion ID's" lib/api/ci/runner.rb: optional :tag_list, type: Array[String], coerce_with: ::API::Validations::Types::CommaSeparatedToArray.coerce, desc: %q(List of Runner's tags) lib/api/ci/runners.rb: optional :tag_list, type: Array[String], coerce_with: ::API::Validations::Types::CommaSeparatedToArray.coerce, desc: 'The tags of the runners to show' lib/api/ci/runners.rb: optional :tag_list, type: Array[String], coerce_with: ::API::Validations::Types::CommaSeparatedToArray.coerce, desc: 'The tags of the runners to show' lib/api/ci/runners.rb: optional :tag_list, type: Array[String], coerce_with: ::API::Validations::Types::CommaSeparatedToArray.coerce, desc: 'The list of tags for a runner' lib/api/ci/runners.rb: optional :tag_list, type: Array[String], coerce_with: ::API::Validations::Types::CommaSeparatedToArray.coerce, desc: 'The tags of the runners to show' lib/api/ci/runners.rb: optional :tag_list, type: Array[String], coerce_with: ::API::Validations::Types::CommaSeparatedToArray.coerce, desc: 'The tags of the runners to show' lib/api/issues.rb: optional :labels, type: Array[String], coerce_with: ::API::Validations::Types::CommaSeparatedToArray.coerce, desc: 'Comma-separated list of label names' lib/api/issues.rb: optional :iids, type: Array[Integer], coerce_with: ::API::Validations::Types::CommaSeparatedToIntegerArray.coerce, desc: 'The IID array of issues' lib/api/issues.rb: optional :assignee_username, type: Array[String], check_assignees_count: true, lib/api/issues.rb: optional :labels, type: Array[String], coerce_with: ::API::Validations::Types::CommaSeparatedToArray.coerce, desc: 'Comma-separated list of label names' lib/api/issues.rb: optional :iids, type: Array[Integer], coerce_with: ::API::Validations::Types::CommaSeparatedToIntegerArray.coerce, desc: 'The IID array of issues' lib/api/issues.rb: optional :assignee_username, type: Array[String], check_assignees_count: true, lib/api/issues.rb: optional :assignee_ids, type: Array[Integer], coerce_with: ::API::Validations::Types::CommaSeparatedToIntegerArray.coerce, desc: 'The array of user IDs to assign issue' lib/api/issues.rb: optional :labels, type: Array[String], coerce_with: ::API::Validations::Types::CommaSeparatedToArray.coerce, desc: 'Comma-separated list of label names' lib/api/issues.rb: optional :add_labels, type: Array[String], coerce_with: ::API::Validations::Types::CommaSeparatedToArray.coerce, desc: 'Comma-separated list of label names' lib/api/issues.rb: optional :remove_labels, type: Array[String], coerce_with: ::API::Validations::Types::CommaSeparatedToArray.coerce, desc: 'Comma-separated list of label names' lib/api/groups.rb: optional :skip_groups, type: Array[Integer], coerce_with: ::API::Validations::Types::CommaSeparatedToIntegerArray.coerce, desc: 'Array of group ids to exclude from list' lib/api/users.rb: optional :scopes, type: Array, desc: 'The array of scopes of the impersonation token' lib/api/users.rb: requires :scopes, type: Array[String], coerce_with: ::API::Validations::Types::CommaSeparatedToArray.coerce, values: ::Gitlab::Auth.all_available_scopes.map(&:to_s), lib/api/feature_flags.rb: optional :scopes, type: Array do lib/api/feature_flags.rb: optional :strategies, type: Array do lib/api/feature_flags.rb: optional :scopes, type: Array do lib/api/feature_flags.rb: optional :strategies, type: Array do lib/api/feature_flags.rb: optional :scopes, type: Array do lib/api/merge_requests.rb: optional :assignee_ids, type: Array[Integer], coerce_with: ::API::Validations::Types::CommaSeparatedToIntegerArray.coerce, desc: 'Comma-separated list of assignee ids' lib/api/merge_requests.rb: optional :reviewer_ids, type: Array[Integer], coerce_with: ::API::Validations::Types::CommaSeparatedToIntegerArray.coerce, desc: 'Comma-separated list of reviewer ids' lib/api/merge_requests.rb: optional :labels, type: Array[String], coerce_with: Validations::Types::CommaSeparatedToArray.coerce, desc: 'Comma-separated list of label names' lib/api/merge_requests.rb: optional :add_labels, type: Array[String], coerce_with: Validations::Types::CommaSeparatedToArray.coerce, desc: 'Comma-separated list of label names' lib/api/merge_requests.rb: optional :remove_labels, type: Array[String], coerce_with: Validations::Types::CommaSeparatedToArray.coerce, desc: 'Comma-separated list of label names' lib/api/merge_requests.rb: optional :iids, type: Array[Integer], coerce_with: ::API::Validations::Types::CommaSeparatedToIntegerArray.coerce, desc: 'The IID array of merge requests' lib/api/merge_requests.rb: requires :commits, type: Array[String], coerce_with: ::API::Validations::Types::CommaSeparatedToArray.coerce, allow_blank: false, desc: 'List of context commits sha' lib/api/merge_requests.rb: requires :commits, type: Array[String], coerce_with: ::API::Validations::Types::CommaSeparatedToArray.coerce, allow_blank: false, desc: 'List of context commits sha' Closes #1256 Closes #1419

Open Graph Description: Well, this was tedious 😁 Follow-up to #1413. Long term I don't see this being a good idea to maintain manually. Maybe later we can just convert any list we get in the data for ListMixin. Either...

X Description: Well, this was tedious 😁 Follow-up to #1413. Long term I don't see this being a good idea to maintain manually. Maybe later we can just convert any list we get in the data for ListMixin. Ei...

Opengraph URL: https://github.com/python-gitlab/python-gitlab/pull/1420

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:6b0c7c81-464d-c75f-eeda-9e184f86ddb4
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-id9700:9FA89:1DE4C6:25B84A:69742426
html-safe-nonce6be24d0977a24f3e5a75f65807a50e05960b69b164e2f102d0bf1027e2d1f120
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5NzAwOjlGQTg5OjFERTRDNjoyNUI4NEE6Njk3NDI0MjYiLCJ2aXNpdG9yX2lkIjoiNjU4NDQyMjkxNTA5OTU5OTkxMCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac42b0af356d20d92d91382abf848d89c1ffbeadddf35f5e2227a196a817d22ea2
hovercard-subject-tagpull_request:624535612
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/python-gitlab/python-gitlab/pull/1420/files
twitter:imagehttps://avatars.githubusercontent.com/u/16777978?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/16777978?s=400&v=4
og:image:altWell, this was tedious 😁 Follow-up to #1413. Long term I don't see this being a good idea to maintain manually. Maybe later we can just convert any list we get in the data for ListMixin. Either...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None447dc9917c3d68d647a01abfdefe55ec7ee1785922136c1d8395dbb3ab6d57b9
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/python-gitlab/python-gitlab git https://github.com/python-gitlab/python-gitlab.git
octolytics-dimension-user_id28886265
octolytics-dimension-user_loginpython-gitlab
octolytics-dimension-repository_id8077625
octolytics-dimension-repository_nwopython-gitlab/python-gitlab
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id8077625
octolytics-dimension-repository_network_root_nwopython-gitlab/python-gitlab
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release8dad7bdfecbe3eaa97ac4e632d6b47e2b23e81d9
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/python-gitlab/python-gitlab/pull/1420/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython-gitlab%2Fpython-gitlab%2Fpull%2F1420%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython-gitlab%2Fpython-gitlab%2Fpull%2F1420%2Ffiles
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=python-gitlab%2Fpython-gitlab
Reloadhttps://github.com/python-gitlab/python-gitlab/pull/1420/files
Reloadhttps://github.com/python-gitlab/python-gitlab/pull/1420/files
Reloadhttps://github.com/python-gitlab/python-gitlab/pull/1420/files
python-gitlab https://github.com/python-gitlab
python-gitlabhttps://github.com/python-gitlab/python-gitlab
Notifications https://github.com/login?return_to=%2Fpython-gitlab%2Fpython-gitlab
Fork 675 https://github.com/login?return_to=%2Fpython-gitlab%2Fpython-gitlab
Star 2.4k https://github.com/login?return_to=%2Fpython-gitlab%2Fpython-gitlab
Code https://github.com/python-gitlab/python-gitlab
Issues 26 https://github.com/python-gitlab/python-gitlab/issues
Pull requests 11 https://github.com/python-gitlab/python-gitlab/pulls
Discussions https://github.com/python-gitlab/python-gitlab/discussions
Actions https://github.com/python-gitlab/python-gitlab/actions
Projects 0 https://github.com/python-gitlab/python-gitlab/projects
Security 0 https://github.com/python-gitlab/python-gitlab/security
Insights https://github.com/python-gitlab/python-gitlab/pulse
Code https://github.com/python-gitlab/python-gitlab
Issues https://github.com/python-gitlab/python-gitlab/issues
Pull requests https://github.com/python-gitlab/python-gitlab/pulls
Discussions https://github.com/python-gitlab/python-gitlab/discussions
Actions https://github.com/python-gitlab/python-gitlab/actions
Projects https://github.com/python-gitlab/python-gitlab/projects
Security https://github.com/python-gitlab/python-gitlab/security
Insights https://github.com/python-gitlab/python-gitlab/pulse
Sign up for GitHub https://github.com/signup?return_to=%2Fpython-gitlab%2Fpython-gitlab%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2Fpython-gitlab%2Fpython-gitlab%2Fissues%2Fnew%2Fchoose
JohnVillalovoshttps://github.com/JohnVillalovos
masterhttps://github.com/python-gitlab/python-gitlab/tree/master
fix/missing-list-attributeshttps://github.com/python-gitlab/python-gitlab/tree/fix/missing-list-attributes
Conversation 7 https://github.com/python-gitlab/python-gitlab/pull/1420
Commits 2 https://github.com/python-gitlab/python-gitlab/pull/1420/commits
Checks 0 https://github.com/python-gitlab/python-gitlab/pull/1420/checks
Files changed https://github.com/python-gitlab/python-gitlab/pull/1420/files
Please reload this pagehttps://github.com/python-gitlab/python-gitlab/pull/1420/files
fix(objects): make lists work for filters in all objects https://github.com/python-gitlab/python-gitlab/pull/1420/files#top
Show all changes 2 commits https://github.com/python-gitlab/python-gitlab/pull/1420/files
603a351 fix(objects): allow lists for filters for in all objects nejch Apr 27, 2021 https://github.com/python-gitlab/python-gitlab/pull/1420/commits/603a351c71196a7f516367fbf90519f9452f3c55
a014774 test(functional): add test for skip_groups list filter nejch May 6, 2021 https://github.com/python-gitlab/python-gitlab/pull/1420/commits/a014774a6a2523b73601a1930c44ac259d03a50e
Clear filters https://github.com/python-gitlab/python-gitlab/pull/1420/files
Please reload this pagehttps://github.com/python-gitlab/python-gitlab/pull/1420/files
Please reload this pagehttps://github.com/python-gitlab/python-gitlab/pull/1420/files
deploy_tokens.py https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-b9afac5a30a8143510b1e110cefe4f1e51d197d95105600a12feb08140a2c2bd
groups.py https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-d34c5d8bb8d2cd5cf3fc70ce2c27d39b260be98d104e490b6e6841809a3c413a
issues.py https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-0fafaa6e9fae1d283430e60d0c79616d81bcf0525cf8a65bcfcb1ccf37a5145d
members.py https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-6e6a751716872d039126e3da07caeb12edefe32ccbb21b32c1a2e600ca0bf8d7
merge_requests.py https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-a33783c2eb23b2bc652e168f00b4398c674a04cdd8f3d026d1929475d81a8991
milestones.py https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-43babdbbb1080559b4b06f005d062621d07703727dc944ae1e41175d95e9b1e0
projects.py https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-35c762fe5f0b56e895460a2a00b60a47ff76f8502d6b7fa474bf3503765f2d68
runners.py https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-69cf21f664e78313ee36e217e2fd860b45021d2052b1ee08b31bf9c583f91f60
settings.py https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-a1913fdcad0e4c2caf11fcc654aad291531592ec9d22b6b2f0e1ceaf22e6ee3c
users.py https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-38adebafd33d25cef492d107b81342411b39d01cffdbe833c975351e6775551a
test_groups.py https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-4de4346104a3ce74a5014c2c22f4b907d61f82c8e247e19fdf8080d989c22346
gitlab/v4/objects/deploy_tokens.pyhttps://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-b9afac5a30a8143510b1e110cefe4f1e51d197d95105600a12feb08140a2c2bd
View file https://github.com/python-gitlab/python-gitlab/blob/a014774a6a2523b73601a1930c44ac259d03a50e/gitlab/v4/objects/deploy_tokens.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python-gitlab/python-gitlab/pull/1420/{{ revealButtonHref }}
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-b9afac5a30a8143510b1e110cefe4f1e51d197d95105600a12feb08140a2c2bd
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-b9afac5a30a8143510b1e110cefe4f1e51d197d95105600a12feb08140a2c2bd
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-b9afac5a30a8143510b1e110cefe4f1e51d197d95105600a12feb08140a2c2bd
gitlab/v4/objects/groups.pyhttps://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-d34c5d8bb8d2cd5cf3fc70ce2c27d39b260be98d104e490b6e6841809a3c413a
View file https://github.com/python-gitlab/python-gitlab/blob/a014774a6a2523b73601a1930c44ac259d03a50e/gitlab/v4/objects/groups.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python-gitlab/python-gitlab/pull/1420/{{ revealButtonHref }}
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-d34c5d8bb8d2cd5cf3fc70ce2c27d39b260be98d104e490b6e6841809a3c413a
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-d34c5d8bb8d2cd5cf3fc70ce2c27d39b260be98d104e490b6e6841809a3c413a
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-d34c5d8bb8d2cd5cf3fc70ce2c27d39b260be98d104e490b6e6841809a3c413a
gitlab/v4/objects/issues.pyhttps://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-0fafaa6e9fae1d283430e60d0c79616d81bcf0525cf8a65bcfcb1ccf37a5145d
View file https://github.com/python-gitlab/python-gitlab/blob/a014774a6a2523b73601a1930c44ac259d03a50e/gitlab/v4/objects/issues.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python-gitlab/python-gitlab/pull/1420/{{ revealButtonHref }}
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-0fafaa6e9fae1d283430e60d0c79616d81bcf0525cf8a65bcfcb1ccf37a5145d
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-0fafaa6e9fae1d283430e60d0c79616d81bcf0525cf8a65bcfcb1ccf37a5145d
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-0fafaa6e9fae1d283430e60d0c79616d81bcf0525cf8a65bcfcb1ccf37a5145d
gitlab/v4/objects/members.pyhttps://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-6e6a751716872d039126e3da07caeb12edefe32ccbb21b32c1a2e600ca0bf8d7
View file https://github.com/python-gitlab/python-gitlab/blob/a014774a6a2523b73601a1930c44ac259d03a50e/gitlab/v4/objects/members.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python-gitlab/python-gitlab/pull/1420/{{ revealButtonHref }}
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-6e6a751716872d039126e3da07caeb12edefe32ccbb21b32c1a2e600ca0bf8d7
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-6e6a751716872d039126e3da07caeb12edefe32ccbb21b32c1a2e600ca0bf8d7
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-6e6a751716872d039126e3da07caeb12edefe32ccbb21b32c1a2e600ca0bf8d7
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-6e6a751716872d039126e3da07caeb12edefe32ccbb21b32c1a2e600ca0bf8d7
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-6e6a751716872d039126e3da07caeb12edefe32ccbb21b32c1a2e600ca0bf8d7
gitlab/v4/objects/merge_requests.pyhttps://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-a33783c2eb23b2bc652e168f00b4398c674a04cdd8f3d026d1929475d81a8991
View file https://github.com/python-gitlab/python-gitlab/blob/a014774a6a2523b73601a1930c44ac259d03a50e/gitlab/v4/objects/merge_requests.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python-gitlab/python-gitlab/pull/1420/{{ revealButtonHref }}
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-a33783c2eb23b2bc652e168f00b4398c674a04cdd8f3d026d1929475d81a8991
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-a33783c2eb23b2bc652e168f00b4398c674a04cdd8f3d026d1929475d81a8991
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-a33783c2eb23b2bc652e168f00b4398c674a04cdd8f3d026d1929475d81a8991
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-a33783c2eb23b2bc652e168f00b4398c674a04cdd8f3d026d1929475d81a8991
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-a33783c2eb23b2bc652e168f00b4398c674a04cdd8f3d026d1929475d81a8991
gitlab/v4/objects/milestones.pyhttps://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-43babdbbb1080559b4b06f005d062621d07703727dc944ae1e41175d95e9b1e0
View file https://github.com/python-gitlab/python-gitlab/blob/a014774a6a2523b73601a1930c44ac259d03a50e/gitlab/v4/objects/milestones.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python-gitlab/python-gitlab/pull/1420/{{ revealButtonHref }}
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-43babdbbb1080559b4b06f005d062621d07703727dc944ae1e41175d95e9b1e0
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-43babdbbb1080559b4b06f005d062621d07703727dc944ae1e41175d95e9b1e0
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-43babdbbb1080559b4b06f005d062621d07703727dc944ae1e41175d95e9b1e0
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-43babdbbb1080559b4b06f005d062621d07703727dc944ae1e41175d95e9b1e0
gitlab/v4/objects/projects.pyhttps://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-35c762fe5f0b56e895460a2a00b60a47ff76f8502d6b7fa474bf3503765f2d68
View file https://github.com/python-gitlab/python-gitlab/blob/a014774a6a2523b73601a1930c44ac259d03a50e/gitlab/v4/objects/projects.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python-gitlab/python-gitlab/pull/1420/{{ revealButtonHref }}
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-35c762fe5f0b56e895460a2a00b60a47ff76f8502d6b7fa474bf3503765f2d68
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-35c762fe5f0b56e895460a2a00b60a47ff76f8502d6b7fa474bf3503765f2d68
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-35c762fe5f0b56e895460a2a00b60a47ff76f8502d6b7fa474bf3503765f2d68
gitlab/v4/objects/runners.pyhttps://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-69cf21f664e78313ee36e217e2fd860b45021d2052b1ee08b31bf9c583f91f60
View file https://github.com/python-gitlab/python-gitlab/blob/a014774a6a2523b73601a1930c44ac259d03a50e/gitlab/v4/objects/runners.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python-gitlab/python-gitlab/pull/1420/{{ revealButtonHref }}
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-69cf21f664e78313ee36e217e2fd860b45021d2052b1ee08b31bf9c583f91f60
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-69cf21f664e78313ee36e217e2fd860b45021d2052b1ee08b31bf9c583f91f60
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-69cf21f664e78313ee36e217e2fd860b45021d2052b1ee08b31bf9c583f91f60
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-69cf21f664e78313ee36e217e2fd860b45021d2052b1ee08b31bf9c583f91f60
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-69cf21f664e78313ee36e217e2fd860b45021d2052b1ee08b31bf9c583f91f60
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-69cf21f664e78313ee36e217e2fd860b45021d2052b1ee08b31bf9c583f91f60
gitlab/v4/objects/settings.pyhttps://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-a1913fdcad0e4c2caf11fcc654aad291531592ec9d22b6b2f0e1ceaf22e6ee3c
View file https://github.com/python-gitlab/python-gitlab/blob/a014774a6a2523b73601a1930c44ac259d03a50e/gitlab/v4/objects/settings.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python-gitlab/python-gitlab/pull/1420/{{ revealButtonHref }}
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-a1913fdcad0e4c2caf11fcc654aad291531592ec9d22b6b2f0e1ceaf22e6ee3c
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-a1913fdcad0e4c2caf11fcc654aad291531592ec9d22b6b2f0e1ceaf22e6ee3c
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-a1913fdcad0e4c2caf11fcc654aad291531592ec9d22b6b2f0e1ceaf22e6ee3c
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-a1913fdcad0e4c2caf11fcc654aad291531592ec9d22b6b2f0e1ceaf22e6ee3c
gitlab/v4/objects/users.pyhttps://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-38adebafd33d25cef492d107b81342411b39d01cffdbe833c975351e6775551a
View file https://github.com/python-gitlab/python-gitlab/blob/a014774a6a2523b73601a1930c44ac259d03a50e/gitlab/v4/objects/users.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python-gitlab/python-gitlab/pull/1420/{{ revealButtonHref }}
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-38adebafd33d25cef492d107b81342411b39d01cffdbe833c975351e6775551a
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-38adebafd33d25cef492d107b81342411b39d01cffdbe833c975351e6775551a
tools/functional/api/test_groups.pyhttps://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-4de4346104a3ce74a5014c2c22f4b907d61f82c8e247e19fdf8080d989c22346
View file https://github.com/python-gitlab/python-gitlab/blob/a014774a6a2523b73601a1930c44ac259d03a50e/tools/functional/api/test_groups.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python-gitlab/python-gitlab/pull/1420/{{ revealButtonHref }}
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-4de4346104a3ce74a5014c2c22f4b907d61f82c8e247e19fdf8080d989c22346
https://github.com/python-gitlab/python-gitlab/pull/1420/files#diff-4de4346104a3ce74a5014c2c22f4b907d61f82c8e247e19fdf8080d989c22346
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.