Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ composer.lock
build
studio.json
.phpunit.cache
.idea/
12 changes: 10 additions & 2 deletions bundle/Resources/config/services/controllers.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,24 @@
services:
Netgen\Bundle\IbexaAdminUIExtraBundle\Controller\Content\UpdateAlwaysAvailable:
parent: Ibexa\Contracts\AdminUi\Controller\Controller
arguments:
- '@translator'
- '@ibexa.api.service.content'
- '@Netgen\Bundle\IbexaAdminUIExtraBundle\Form\FormFactory'
- '@Ibexa\Core\Helper\TranslationHelper'
calls:
- [setContainer , ['@Psr\Container\ContainerInterface']]
tags:
- controller.service_arguments
- container.service_subscriber

Netgen\Bundle\IbexaAdminUIExtraBundle\Controller\Queues:
parent: Ibexa\Contracts\AdminUi\Controller\Controller
arguments:
$transportLocator: '@messenger.receiver_locator'
$queuesEnabled: '%netgen_ibexa_admin_ui_extra.queues.enabled%'
$allowedTransports: '%netgen_ibexa_admin_ui_extra.queues.transports%'
$permissionResolver: '@Ibexa\Contracts\Core\Repository\PermissionResolver'
calls:
- [setContainer , ['@Psr\Container\ContainerInterface']]
tags:
- controller.service_arguments
- container.service_subscriber
2 changes: 2 additions & 0 deletions bundle/Resources/views/queues/list.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

{% trans_default_domain 'netgen_ibexa_admin_ui_extra' %}

{% block title %}{{ 'queues.title'|trans|desc('Queues') }}{% endblock %}

{% block breadcrumbs %}
{% include '@ibexadesign/ui/breadcrumbs.html.twig' with { items: [
{ value: 'breadcrumb.admin'|trans(domain='messages')|desc('Admin') },
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{% extends '@admin/content/draft/draft_list.html.twig' %}

{% block title %}{{ 'drafts.title'|trans|desc('Drafts') }}{% endblock %}
7 changes: 3 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,12 @@
}
],
"require": {
"ibexa/admin-ui": "^4.6"
"ibexa/admin-ui": "^5.0.2"
},
"require-dev": {
"netgen/ibexa-site-api": "^6.1",
"ibexa/graphql": "^4.5",
"ibexa/graphql": "^5.0.2",
"phpunit/phpunit": "^10",
"matthiasnoback/symfony-dependency-injection-test": "^4.1"
"matthiasnoback/symfony-dependency-injection-test": "^6.0.0"
},
"autoload": {
"psr-4": {
Expand Down
Loading