packages feed

hercules-ci-api-0.6.0.0: src/Hercules/API/Accounts/AccountSettings.hs

{-# LANGUAGE DeriveAnyClass #-}

module Hercules.API.Accounts.AccountSettings where

import Hercules.API.Prelude

data AccountSettings = AccountSettings
  { -- | When a new repo is created/installed, enable building it?
    enableNewRepos :: Bool
  }
  deriving (Generic, Show, Eq, NFData, ToJSON, FromJSON, ToSchema)