Safe Haskell | None |
---|---|
Language | Haskell98 |
Hot forking action, as described at http://developer.github.com/v3/repos/forks/.
Documentation
forksFor :: String -> String -> IO (Either Error [Repo]) Source
All the repos that are forked off the given repo.
forksFor "thoughtbot" "paperclip"
forksFor' :: Maybe GithubAuth -> String -> String -> IO (Either Error [Repo]) Source
All the repos that are forked off the given repo. | With authentication
forksFor' (Just (GithubUser (user, password))) "thoughtbot" "paperclip"
module Github.Data