guyzmo/git-repo

Implement gist/snippet support for gitlab

guyzmo opened this issue · 2 comments

Implement gist/snippet support for gitlab

firsts steps are implemented in branch features/gitlab-gist

API doc: https://docs.gitlab.com/ee/api/project_snippets.html

some issues are met:

  • the global /snippets API is not available
  • listing snippets for each project takes forever, and is paginated (100 values at most)
  • no argument has been implemented for the project parameter.

Issue for lack of global snippet API reported on gitlab's ticket tracking:

  • The Merge Request for /snippets API support is under way for gitlab-ce !6373 (should land around gitlab v8.15).
  • A Pull Request to add support is python-gitlab has been written: python-gitlab/python-gitlab#187