hydra-api: implement DELETE /project/{id}

[?]
Apr 27, 2021, 2:35 AM
CTGZFKAIBU63YEYY7OLZIIQUXFFVV3VFUJAJ2NGVCX6GIEEIKDQAC

Dependencies

  • [2] LX326CB7 Add hydra OpenAPI description (#750)

Change contents

  • edit in hydra-api.yaml at line 261
    [2.7259]
    [2.7259]
    delete:
    summary: Deletes a project
    parameters:
    - name: id
    in: path
    description: project identifier
    required: true
    schema:
    type: string
    responses:
    '200':
    description: project deleted
    content:
    application/json:
    schema:
    type: object
    properties:
    redirect:
    type: string
    description: root of the Hydra instance
    '404':
    description: project could not be found
    content:
    application/json:
    schema:
    $ref: '#/components/schemas/Error'