forked from haskell-github/github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEnterprise.hs
More file actions
23 lines (20 loc) · 723 Bytes
/
Enterprise.hs
File metadata and controls
23 lines (20 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
-----------------------------------------------------------------------------
-- |
-- License : BSD-3-Clause
-- Maintainer : Oleg Grenrus <oleg.grenrus@iki.fi>
--
-- This module re-exports all request constructors and data definitions for
-- working with GitHub Enterprise.
--
module GitHub.Enterprise (
-- * Enterprise Admin
-- | See <https://developer.github.com/enterprise/v3/enterprise-admin/>
-- ** Organizations
-- | See <https://developer.github.com/enterprise/v3/enterprise-admin/orgs/>
createOrganizationR,
renameOrganizationR,
-- * Data definitions
module GitHub.Data.Enterprise,
) where
import GitHub.Data.Enterprise
import GitHub.Endpoints.Enterprise.Organizations