UFAL/Cherrypick feature for updating configuration files - #1025
Merged
Merged
Conversation
* Working, added a new page, component to be possible update configuration files which are loaded from the BE. * Small changes to make it prettier and mor intuitive * Removed hardcoded icons * Updated messages
There was a problem hiding this comment.
Pull Request Overview
This PR cherry-picks a configuration management feature that allows administrators to edit DSpace configuration files through a web interface.
- Adds internationalization support for update-config functionality in both English and Czech
- Creates a new admin module for configuration file management with service, component, and routing
- Integrates the new "Update Config" menu item into the admin navigation
Reviewed Changes
Copilot reviewed 11 out of 11 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| src/assets/i18n/en.json5 | Adds comprehensive English translations for the update-config feature |
| src/assets/i18n/cs.json5 | Adds Czech translations for the update-config feature |
| src/app/menu.resolver.ts | Adds "Update Config" menu item to admin navigation |
| src/app/admin/admin-update-config/admin-update-config.service.ts | Implements HTTP service for configuration file operations |
| src/app/admin/admin-update-config/admin-update-config.module.ts | Defines the module structure and dependencies |
| src/app/admin/admin-update-config/admin-update-config.component.ts | Main component logic for file editing interface |
| src/app/admin/admin-update-config/admin-update-config.component.scss | Styling for the configuration editor interface |
| src/app/admin/admin-update-config/admin-update-config.component.html | Template for the configuration editor UI |
| src/app/admin/admin-update-config/admin-update-config-routing.module.ts | Routing configuration with admin guard protection |
| src/app/admin/admin-routing.module.ts | Integrates update-config route into admin routing |
| src/app/admin/admin-routing-paths.ts | Adds path constants for the new feature |
Comments suppressed due to low confidence (1)
src/assets/i18n/cs.json5:1
- The Czech translation has a spelling error. 'Uprava' should be 'Úprava' (with an accent on the 'U').
{
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
…taquest-dev/dspace-angular into ufal/cherrypick-updating-config-files
milanmajchrak
previously approved these changes
Nov 19, 2025
vidiecan
requested changes
Nov 21, 2025
vidiecan
approved these changes
Jan 13, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Problem description
Cherry-pick of new features: updating configuration files (ORCID)
pull/1008