-
-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(projectHistoryLogs): rename incorrectly-formatted action TASK-944 (…
…#5320) ### 📣 Summary Change the action `modify_sharing` to `modify-sharing` in project history logs for consistency. ### 👷 Description for instance maintainers Change the AuditAction `modify_sharing` to `modify-sharing`, including a migration to update existing logs. Also adds the migration for all the new audit action types, although this migration seems to be a no-op in SQL. ### 👀 Preview steps 1. ℹ️ have an account and a project 2. Go to Project > Settings > Connect Projects and enable data sharing. Select a specific question to share. 3. 🔴 [on main] Go to `api/v2/assets/<uid>/history`. Notice the action for the latest project history log is `modify_sharing` 4. 🟢 [on PR] After running migrations, reload the history endpoint. Notice the action is now `modify-sharing` 5. [on PR] Select another question to share 6. 🟢 [on PR] Reload the endpoint. The latest log should have action=`modify-sharing` ### 💭 Notes I didn't even realize this needed a migration until I ran `./manage makemigrations audit_log`. It seems to work fine without the migration but this way there will be no unexpected changes next time we have to make a real migration. The migration of existing logs should be pretty light since it's a fairly rare type of log.
- Loading branch information
Showing
3 changed files
with
71 additions
and
3 deletions.
There are no files selected for viewing
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
68 changes: 68 additions & 0 deletions
68
kobo/apps/audit_log/migrations/0013_alter_auditlog_action.py
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
# Generated by Django 4.2.15 on 2024-12-03 16:51 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('audit_log', '0012_alter_auditlog_action'), | ||
] | ||
|
||
operations = [ | ||
migrations.RunSQL( | ||
sql="UPDATE audit_log_auditlog SET action = 'modify-sharing' " | ||
"WHERE action = 'modify_sharing';", | ||
reverse_sql=migrations.RunSQL.noop, | ||
), | ||
migrations.AlterField( | ||
model_name='auditlog', | ||
name='action', | ||
field=models.CharField( | ||
choices=[ | ||
('add-media', 'Add Media'), | ||
('allow-anonymous-submissions', 'Allow Anonymous Submissions'), | ||
('archive', 'Archive'), | ||
('auth', 'Auth'), | ||
('clone-permissions', 'Clone Permissions'), | ||
('connect-project', 'Connect Project'), | ||
('create', 'Create'), | ||
('delete', 'Delete'), | ||
('delete-media', 'Delete Media'), | ||
('delete-service', 'Delete Service'), | ||
('deploy', 'Deploy'), | ||
('disable-sharing', 'Disable Sharing'), | ||
( | ||
'disallow-anonymous-submissions', | ||
'Disallow Anonymous Submissions', | ||
), | ||
('disconnect-project', 'Disconnect Project'), | ||
('enable-sharing', 'Enable Sharing'), | ||
('export', 'Export'), | ||
('in-trash', 'In Trash'), | ||
('modify-imported-fields', 'Modify Imported Fields'), | ||
('modify-service', 'Modify Service'), | ||
('modify-sharing', 'Modify Sharing'), | ||
('modify-user-permissions', 'Modify User Permissions'), | ||
('put-back', 'Put Back'), | ||
('redeploy', 'Redeploy'), | ||
('register-service', 'Register Service'), | ||
('remove', 'Remove'), | ||
('replace-form', 'Replace Form'), | ||
('share-form-publicly', 'Share Form Publicly'), | ||
('share-data-publicly', 'Share Data Publicly'), | ||
('unarchive', 'Unarchive'), | ||
('unshare-form-publicly', 'Unshare Form Publicly'), | ||
('unshare-data-publicly', 'Unshare Data Publicly'), | ||
('update', 'Update'), | ||
('update-content', 'Update Content'), | ||
('update-name', 'Update Name'), | ||
('update-settings', 'Update Settings'), | ||
('update-qa', 'Update Qa'), | ||
], | ||
db_index=True, | ||
default='delete', | ||
max_length=30, | ||
), | ||
), | ||
] |
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