Merge branch 'ATS-28' into 'master'

ATS-28

See merge request Repository/alfresco-docker-transformers!38
This commit is contained in:
Denis Ungureanu 2019-01-07 09:36:47 +00:00
commit 752e1189d1

View File

@ -124,6 +124,24 @@ paths:
description: Unexpected error
schema:
$ref: '#/definitions/Error'
'/transformer/options':
get:
tags:
- Transform
description: List transform options
operationId: transformOptions
produces:
- application/json
responses:
200:
description: Successful response
schema:
type: array
xml:
name: transformOptions
wrapped: true
items:
$ref: '#/definitions/transformOption'
definitions:
Error:
type: object
@ -194,3 +212,13 @@ definitions:
type: integer
errorDetails:
type: string
transformOption:
type: object
required:
- required
- name
properties:
required:
type: boolean
name:
type: string