Features

With the _features.conf you can control which Enterprise API features are enabled. They are managed via the feature manager.

Available Features

  • openapi - Enables openapi endpoints
  • auth - Configure authentication
  • feature-flag-information-endpoint - Enables endpoints related to showing information about available features on this service instance
  • healthchecks - Enables healthcheck endpoints
  • enterprise - Enterprise base
  • admin - Administration endpoints
  • superadmin-registration - Enable or disable superadmin registration
  • dev-mode - Development mode
  • database - Configure database
  • web - Web service
  • authservice - Enables user authentication
  • persistence - Storage
  • organization-creation - Enable or disable organization creation
  • debug-endpoints - Enables various debug endpoints
  • account-registration - Enable or disable account registration

Example Setup

_features.conf
enabledFeatures = [
    admin // adds routes for administration of globals
    dev-mode // adds routes useful for development
    superadmin-registration // allows registering superadmins
]
disabledFeatures = [
    # debug-endpoints
    # account-registration
]