Skip to content

Commit b62768b

Browse files
committed
add upsertplace endpoint
1 parent 4f82ba0 commit b62768b

File tree

66 files changed

+1801
-336
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+1801
-336
lines changed

config/packages/api_platform.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ api_platform:
88
vary: ["Content-Type", "Authorization", "Origin"]
99
mapping:
1010
paths:
11-
- "%kernel.project_dir%/src/Community/Infrastructure/ApiPlatform/Resource/"
12-
- "%kernel.project_dir%/src/Place/Infrastructure/ApiPlatform/Resource/"
13-
- "%kernel.project_dir%/src/Place/Domain/Exception/"
14-
- "%kernel.project_dir%/src/Community/Domain/Exception/"
11+
- "%kernel.project_dir%/src/FieldHolder/Community/Infrastructure/ApiPlatform/Resource/"
12+
- "%kernel.project_dir%/src/FieldHolder/Place/Infrastructure/ApiPlatform/Resource/"
13+
- "%kernel.project_dir%/src/FieldHolder/Place/Domain/Exception/"
14+
- "%kernel.project_dir%/src/FieldHolder/Community/Domain/Exception/"
1515
- "%kernel.project_dir%/src/Field/Domain/Exception/"
1616
formats:
1717
json: ["application/json"]

config/packages/doctrine.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ doctrine:
2525
Community:
2626
type: attribute
2727
is_bundle: false
28-
dir: "%kernel.project_dir%/src/Community/Domain/Model"
29-
prefix: 'App\Community\Domain'
28+
dir: "%kernel.project_dir%/src/FieldHolder/Community/Domain/Model"
29+
prefix: 'App\FieldHolder\Community\Domain'
3030
Place:
3131
type: attribute
3232
is_bundle: false
33-
dir: "%kernel.project_dir%/src/Place/Domain/Model"
34-
prefix: 'App\Place\Domain'
33+
dir: "%kernel.project_dir%/src/FieldHolder/Place/Domain/Model"
34+
prefix: 'App\FieldHolder\Place\Domain'
3535
Field:
3636
type: attribute
3737
is_bundle: false

config/services.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ services:
2929
class: App\Shared\Infrastructure\Doctrine\DoctrineTransactionManager
3030

3131
# Repositories
32-
App\Place\Domain\Repository\PlaceRepositoryInterface:
33-
class: App\Place\Infrastructure\Doctrine\DoctrinePlaceRepository
32+
App\FieldHolder\Place\Domain\Repository\PlaceRepositoryInterface:
33+
class: App\FieldHolder\Place\Infrastructure\Doctrine\DoctrinePlaceRepository
3434

35-
App\Community\Domain\Repository\CommunityRepositoryInterface:
36-
class: App\Community\Infrastructure\Doctrine\DoctrineCommunityRepository
35+
App\FieldHolder\Community\Domain\Repository\CommunityRepositoryInterface:
36+
class: App\FieldHolder\Community\Infrastructure\Doctrine\DoctrineCommunityRepository
3737

3838
App\Field\Domain\Repository\FieldRepositoryInterface:
3939
class: App\Field\Infrastructure\Doctrine\DoctrineFieldRepository
@@ -55,7 +55,7 @@ services:
5555
App\Field\Infrastructure\Doctrine\DoctrineFieldListener:
5656
arguments:
5757
$synchroSecretKey: "%env(SYNCHRO_SECRET_KEY)%"
58-
App\Community\Infrastructure\Doctrine\DoctrineCommunityListener:
58+
App\FieldHolder\Community\Infrastructure\Doctrine\DoctrineCommunityListener:
5959
arguments:
6060
$synchroSecretKey: "%env(SYNCHRO_SECRET_KEY)%"
6161

config/services_test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ services:
33
autowire: true
44
autoconfigure: true
55

6-
App\Community\Infrastructure\Doctrine\DoctrineCommunityRepository:
6+
App\FieldHolder\Community\Infrastructure\Doctrine\DoctrineCommunityRepository:
77
public: true
88

99
# Services

0 commit comments

Comments
 (0)