Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hotfix for pages #145

Merged
merged 23 commits into from
Nov 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
b5e824b
Fixes on object validation
rjzondervan Nov 8, 2024
3f4626c
Merge branch 'development' into feature/DIMOC-274/validate-publication
rjzondervan Nov 8, 2024
07918db
Recover from revert on validationService
rjzondervan Nov 8, 2024
149387a
Recover from revert on objectService
rjzondervan Nov 8, 2024
b91c66d
Fix routing error
rjzondervan Nov 8, 2024
a018dad
phpcs
rubenvdlinde Nov 19, 2024
c0d23d6
Fix summary
bbrands02 Nov 21, 2024
b7cecfe
Merge pull request #137 from ConductionNL/fix/OP-386/directory-summary
bbrands02 Nov 21, 2024
a3aa660
Merge branch 'development' into feature/DIMOC-274/validate-publication
bbrands02 Nov 21, 2024
76bba42
Change validation object and set default values
bbrands02 Nov 21, 2024
d1416cd
Small cleanup
bbrands02 Nov 21, 2024
ccce012
Get PublicationType and ValidationService more inline with OpenRegister
bbrands02 Nov 21, 2024
384de55
remove var_dump
bbrands02 Nov 21, 2024
d6a27d0
Merge pull request #136 from ConductionNL/feature/DIMOC-274/validate-…
bbrands02 Nov 21, 2024
145d1ae
added workflows
remko48 Nov 21, 2024
6e83bd9
Merge pull request #138 from ConductionNL/feature/GW-1763/workflows
remko48 Nov 21, 2024
fc43d0e
Add pages to open catalogi
rubenvdlinde Nov 29, 2024
9fa9f71
First fixes
rubenvdlinde Nov 29, 2024
4e8bb16
Forgot the modals
rubenvdlinde Nov 29, 2024
aa53e6f
fixing the page form
rubenvdlinde Nov 29, 2024
3572969
Version fix for page
rubenvdlinde Nov 29, 2024
08bf136
Fixing the api's
rubenvdlinde Nov 29, 2024
bad0788
Merge remote-tracking branch 'origin/master' into feature/OP-446/pages
rubenvdlinde Nov 29, 2024
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
5 changes: 4 additions & 1 deletion appinfo/routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
'publications' => ['url' => '/api/publications'],
'organizations' => ['url' => '/api/organizations'],
'themes' => ['url' => '/api/themes'],
'pages' => ['url' => '/api/pages'],
'attachments' => ['url' => '/api/attachments'],
'catalogi' => ['url' => '/api/catalogi'],
'listings' => ['url' => '/api/listings'],
Expand Down Expand Up @@ -37,6 +38,8 @@
['name' => 'search#publication', 'url' => '/api/search/publications/{publicationId}', 'verb' => 'GET', 'requirements' => ['publicationId' => '[^/]+']],
['name' => 'search#attachments', 'url' => '/api/search/publications/{publicationId}/attachments', 'verb' => 'GET', 'requirements' => ['publicationId' => '[^/]+']],
['name' => 'search#themes', 'url' => '/api/search/themes', 'verb' => 'GET'],
['name' => 'search#theme', 'url' => '/api/search/themes/{themeId}', 'verb' => 'GET', 'requirements' => ['themeId' => '\d+']]
['name' => 'search#theme', 'url' => '/api/search/themes/{themeId}', 'verb' => 'GET', 'requirements' => ['themeId' => '\d+']],
['name' => 'search#pages', 'url' => '/api/public/pages', 'verb' => 'GET'],
['name' => 'search#page', 'url' => '/api/public/pages/{pageSlug}', 'verb' => 'GET', 'requirements' => ['pageId' => '.+']]
]
];
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,9 @@
"adbario/php-dot-notation": "^3.3.0",
"bamarni/composer-bin-plugin": "^1.8",
"elasticsearch/elasticsearch": "^v8.14.0",
"guzzlehttp/guzzle": "^7.0",
"guzzlehttp/guzzle": "^7.0",
"mpdf/mpdf": "^8.2",
"opis/json-schema": "^2.3",
"symfony/twig-bundle": "^6.4",
"symfony/uid": "^6.4"
},
Expand Down
Loading
Loading