gitlab-haskell-0.2.1: A Haskell library for the GitLab web API

Copyright(c) Rob Stewart Heriot-Watt University 2019
LicenseBSD3
Maintainerrobstewart57@gmail.com
Stabilitystable
Safe HaskellNone
LanguageHaskell2010

GitLab.API.RepositoryFiles

Description

 
Synopsis

Documentation

repositoryFiles Source #

Arguments

:: Project

the project

-> Text

the file path

-> Text

name of the branch, tag or commit

-> GitLab (Either Status (Maybe RepositoryFile)) 

Get a list of repository files and directories in a project.

repositoryFiles' Source #

Arguments

:: Int

project ID

-> Text

the file path

-> Text

name of the branch, tag or commit

-> GitLab (Either Status (Maybe RepositoryFile)) 

Get a list of repository files and directories in a project given the project's ID.

repositoryFileBlob Source #

Arguments

:: Int

project ID

-> Text

blob SHA

-> GitLab (Either Status String) 

Get raw data for a given file blob hash.