109 lines
4.0 KiB
YAML
109 lines
4.0 KiB
YAML
services:
|
|
api_platform.filter.calendar.order:
|
|
parent: 'api_platform.doctrine.orm.order_filter'
|
|
arguments:
|
|
$properties: { 'id': ~, 'name': ~,}
|
|
$orderParameterName: 'order'
|
|
tags: [ 'api_platform.filter' ]
|
|
|
|
api_platform.filter.calendar.search:
|
|
parent: 'api_platform.doctrine.orm.search_filter'
|
|
arguments: [ { 'id': 'exact', 'name': 'exact'} ]
|
|
tags: [ 'api_platform.filter' ]
|
|
|
|
api_platform.filter.client.order:
|
|
parent: 'api_platform.doctrine.orm.order_filter'
|
|
arguments:
|
|
$properties: { 'id': ~, 'name': ~, 'serialNumber': ~ }
|
|
$orderParameterName: 'order'
|
|
tags: [ 'api_platform.filter' ]
|
|
|
|
api_platform.filter.client.search:
|
|
parent: 'api_platform.doctrine.orm.search_filter'
|
|
arguments: [ { 'id': 'exact', 'name': 'partial', 'serialNumber': 'exact', organizationalUnit.id: 'exact' } ]
|
|
tags: [ 'api_platform.filter' ]
|
|
|
|
api_platform.filter.hardware.order:
|
|
parent: 'api_platform.doctrine.orm.order_filter'
|
|
arguments:
|
|
$properties: { 'id': ~, 'name': ~ }
|
|
$orderParameterName: 'order'
|
|
tags: [ 'api_platform.filter' ]
|
|
|
|
api_platform.filter.hardware.search:
|
|
parent: 'api_platform.doctrine.orm.search_filter'
|
|
arguments: [ { 'id': 'exact', 'name': 'partial' } ]
|
|
tags: [ 'api_platform.filter' ]
|
|
|
|
api_platform.filter.menu.order:
|
|
parent: 'api_platform.doctrine.orm.order_filter'
|
|
arguments:
|
|
$properties: { 'id': ~, 'name': ~, 'title': ~ }
|
|
$orderParameterName: 'order'
|
|
tags: [ 'api_platform.filter' ]
|
|
|
|
api_platform.filter.menu.search:
|
|
parent: 'api_platform.doctrine.orm.search_filter'
|
|
arguments: [ { 'id': 'exact', 'name': 'exact', 'title': 'exact' } ]
|
|
tags: [ 'api_platform.filter' ]
|
|
|
|
api_platform.filter.organizational_unit.order:
|
|
parent: 'api_platform.doctrine.orm.order_filter'
|
|
arguments:
|
|
$properties: { 'id': ~, 'name': ~, 'type': ~ }
|
|
$orderParameterName: 'order'
|
|
tags: [ 'api_platform.filter' ]
|
|
|
|
api_platform.filter.organizational_unit.search:
|
|
parent: 'api_platform.doctrine.orm.search_filter'
|
|
arguments: [ { id: 'exact', name: 'partial', type: 'exact', parent.id: 'exact'} ]
|
|
tags: [ 'api_platform.filter' ]
|
|
|
|
api_platform.filter.partition.order:
|
|
parent: 'api_platform.doctrine.orm.order_filter'
|
|
arguments:
|
|
$properties: { 'id': ~, 'usage': ~ }
|
|
$orderParameterName: 'order'
|
|
tags: [ 'api_platform.filter' ]
|
|
|
|
api_platform.filter.partition.search:
|
|
parent: 'api_platform.doctrine.orm.search_filter'
|
|
arguments: [ { 'id': 'exact', 'usage': 'exact', 'diskNumber': 'exact' } ]
|
|
tags: [ 'api_platform.filter' ]
|
|
|
|
api_platform.filter.user.order:
|
|
parent: 'api_platform.doctrine.orm.order_filter'
|
|
arguments:
|
|
$properties: { 'id': ~, 'username': ~ }
|
|
$orderParameterName: 'order'
|
|
tags: [ 'api_platform.filter' ]
|
|
|
|
api_platform.filter.user.search:
|
|
parent: 'api_platform.doctrine.orm.search_filter'
|
|
arguments: [ { 'id': 'exact', 'username': 'partial' } ]
|
|
tags: [ 'api_platform.filter' ]
|
|
|
|
api_platform.filter.user.boolean:
|
|
parent: 'api_platform.doctrine.orm.boolean_filter'
|
|
arguments: [ { 'enabled': ~ } ]
|
|
tags: [ 'api_platform.filter' ]
|
|
|
|
api_platform.filter.user_group.order:
|
|
parent: 'api_platform.doctrine.orm.order_filter'
|
|
arguments:
|
|
$properties: { 'id': ~, 'name': ~ }
|
|
$orderParameterName: 'order'
|
|
tags: [ 'api_platform.filter' ]
|
|
|
|
api_platform.filter.user_group.search:
|
|
parent: 'api_platform.doctrine.orm.search_filter'
|
|
arguments: [ { 'id': 'exact', 'name': 'partial' } ]
|
|
tags: [ 'api_platform.filter' ]
|
|
|
|
api_platform.filter.user_group.boolean:
|
|
parent: 'api_platform.doctrine.orm.boolean_filter'
|
|
arguments: [ { 'enabled': ~ } ]
|
|
tags: [ 'api_platform.filter' ]
|
|
|
|
|