gitlab-haskell-0.1.8: 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.Users

Description

 
Synopsis

Documentation

allUsers :: MonadIO m => GitLab m [User] Source #

all registered users.

searchUser Source #

Arguments

:: MonadIO m 
=> Text

username to search for

-> GitLab m (Maybe User) 

searches for a user given a username. Returns Just User if the user is found, otherwise Nothing.

orderedUsers Source #

Arguments

:: MonadIO m 
=> [Text]

usernames to search for

-> GitLab m [User] 

searches for users given a list of usernames, returns them in alphabetical order of their usernames.