Skip to content
Snippets Groups Projects
Select Git revision
  • b31e48a2d51dd1a4ddaef20ed6240e785e0b43ce
  • master default protected
  • react
3 results

Install-API.v1.yaml

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Install-API.v1.yaml 825 B
    openapi: 3.0.0
    info:
      title: Install API
      version: '1.0'
      description: This API is used by the Web-UI installer in order to get JAMS up and running.
    servers:
      - url: 'http://localhost:3000'
    paths:
      /api/install/auth:
        post:
          summary: ''
          operationId: post-api-install-auth
          responses:
            '200':
              description: OK
      /api/install/ca:
        post:
          summary: ''
          operationId: post-api-install-ca
          responses:
            '200':
              description: OK
      /api/install/settings:
        post:
          summary: ''
          operationId: post-api-install-settings
          responses:
            '200':
              description: OK
      /api/install/start:
        post:
          summary: ''
          operationId: post-api-install-start
          responses:
            '200':
              description: OK
    components:
      schemas: {}