This commit is contained in:
web-devinition.de 2026-01-13 01:09:39 +06:00 committed by GitHub
commit 30840ac8b2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
136 changed files with 23994 additions and 112 deletions

View file

@ -121,6 +121,10 @@ perms: # Here comes a list with all Permission names (they have a perm_[name] co
<<: *PART_CONTAINING
label: "[[Project]]"
assemblies:
<<: *PART_CONTAINING
label: "perm.assemblies"
attachment_types:
<<: *PART_CONTAINING
label: "[[Attachment_type]]"

View file

@ -170,6 +170,9 @@ services:
arguments:
$saml_enabled: '%partdb.saml.enabled%'
App\Validator\Constraints\AssemblySystem\AssemblyCycleValidator:
tags: [ 'validator.constraint_validator' ]
####################################################################################################################
# Table settings
####################################################################################################################
@ -257,6 +260,8 @@ services:
$enabled: '%env(bool:DATABASE_MYSQL_USE_SSL_CA)%'
$verify: '%env(bool:DATABASE_MYSQL_SSL_VERIFY_CERT)%'
App\Helpers\Assemblies\AssemblyPartAggregator: ~
####################################################################################################################
# Monolog
####################################################################################################################
@ -280,6 +285,10 @@ services:
when@test: &test
services:
_defaults:
autowire: true
autoconfigure: true
# Decorate the doctrine fixtures load command to use our custom purger by default
doctrine.fixtures_load_command.custom:
decorates: doctrine.fixtures_load_command
@ -288,3 +297,6 @@ when@test: &test
- '@doctrine.fixtures.loader'
- '@doctrine'
- { default: '@App\Doctrine\Purger\DoNotUsePurgerFactory' }
App\Services\ImportExportSystem\EntityExporter:
public: true