gitlab-haskell-0.3.2.0: src/GitLab/API/Todos.hs
{-# LANGUAGE OverloadedStrings #-}
-- |
-- Module : Todos
-- Description : Queries about todos for users
-- Copyright : (c) Rob Stewart, Heriot-Watt University, 2019
-- License : BSD3
-- Maintainer : robstewart57@gmail.com
-- Stability : stable
module GitLab.API.Todos where
import GitLab.Types
import GitLab.WebRequests.GitLabWebCalls
-- | returns all pending todos for the user, as defined by the access token.
todos :: GitLab [Todo]
todos = gitlabUnsafe (gitlabGetOne "/todos" [])