package datakit-ci

  1. Overview
  2. Docs

Access control lists.

type t = [
  1. | `Everyone
  2. | `Username of string
  3. | `Github_org of string
  4. | `Can_read of Datakit_github.Repo.t
  5. | `Any of t list
]
val everyone : t
val username : string -> t
val github_org : string -> t
val can_read_github : string -> t
val any : t list -> t