hercules-ci-api-0.8.1.0: src/Hercules/API/Accounts/AccountSettings.hs
{-# LANGUAGE DeriveAnyClass #-}
{-# LANGUAGE DerivingStrategies #-}
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)
deriving anyclass (NFData, ToJSON, FromJSON, ToSchema)