Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes various enhancements and fixes across multiple files, focusing on validation improvements, resource management, and dependency updates. The most important changes include adding new validation rules, updating resource relationships, and refining the handling of manuscript records.
Validation Improvements:
ValidListItems
validation rule to ensure list items are valid inAuthorController
(app/Http/Controllers/AuthorController.php
).Resource Management:
ManuscriptRecordMetadataResource
to provide metadata for manuscript records (app/Http/Resources/ManuscriptRecordMetadataResource.php
).AuthorResource
to includepublications
when loaded (app/Http/Resources/AuthorResource.php
).publications
relationship toAuthor
model to fetch published publications (app/Models/Author.php
).Manuscript Records Handling:
metadata
method toManuscriptRecordController
to return basic metadata (app/Http/Controllers/ManuscriptRecordController.php
).defaultResource
andloadPolicyRelationships
methods to avoid N+1 queries (app/Http/Controllers/ManuscriptRecordController.php
).Dependency Updates:
@types/node
and other dependencies inpackage.json
andpnpm-lock.yaml
to their latest versions (package.json
,pnpm-lock.yaml
). [1] [2] [3] [4] [5] [6] [7]Miscellaneous:
AppServiceProvider
(app/Providers/AppServiceProvider.php
).deleteEmploymentRecordInOrcid
method to handle cases where the record was never created in ORCID (app/Jobs/SyncAuthorEmploymentWithOrcid.php
).