-
-
Notifications
You must be signed in to change notification settings - Fork 181
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
Log project name and settings changes #5193
Merged
rgraber
merged 18 commits into
main
from
rsgraber/TASK-944-record-name-and-settings-changes
Oct 29, 2024
Merged
Log project name and settings changes #5193
rgraber
merged 18 commits into
main
from
rsgraber/TASK-944-record-name-and-settings-changes
Oct 29, 2024
Conversation
This file contains 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
Base automatically changed from
rsgraber/TASK-944-log-deployment-changes-better
to
main
October 25, 2024 17:20
Guitlle
requested changes
Oct 29, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A couple of change suggestions
Guitlle
approved these changes
Oct 29, 2024
Guitlle
approved these changes
Oct 29, 2024
rgraber
deleted the
rsgraber/TASK-944-record-name-and-settings-changes
branch
November 1, 2024 12:54
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.
Checklist
./python-format.sh
to make sure that your code lints and that you've followed our coding styleDescription
Create project history logs for changes to project name and settings.
Notes
Refactor the asset model to be more explicit about which settings fields are standardized for saving (makes testing easier)
settings
andlatest_version.uid
to the fields tracked on the AssetViewSet requestsupdate
request by determining which fields were changed and delegating to an appropriate handler.a. For settings, if the setting is a list, include values added and values removed, otherwise, just store the old and new values
Testing
/api/v2/audit-logs/?q=metadata__asset_uid=<project uid> AND log_type='project-history'&format=json
a. action = 'update-settings'
b. metadata.settings =
{ 'description': { 'old': '', 'new': 'new description'}, 'country': {'added': [{'label':'Albania', 'value':'ALB'}, {'label': 'Algeria', 'value': 'ALG'}, 'removed': []}, 'country_codes': {'added': ['ALB','ALG'], 'removed': []} }
curl -X PATCH -H 'Authorization: Token <your token>' -H 'Content-Type: application/json' -H 'Accept: application/json' http://kf.kobo.local/api/v2/assets/<asset uid> --data '{"settings": {}}'
metadata.settings
=curl -X PATCH -H 'Authorization: Token <your token>' -H 'Content-Type: application/json' -H 'Accept: application/json' http://kf.kobo.local/api/v2/assets/<asset uid> --data '{"settings": {"new_setting": "new_value"}}'
metadata.settings
=curl -X PATCH -H 'Authorization: Token <your token>' -H 'Content-Type: application/json' -H 'Accept: application/json' http://kf.kobo.local/api/v2/assets/<asset uid> --data '{"settings": {}}'
metadata.settings
=