diff --git a/CHANGELOG.md b/CHANGELOG.md index f6f95099d..6c50464f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### Changed - Replace facility history feature switch with feature flag [#881](https://github.com/open-apparel-registry/open-apparel-registry/pull/881) - Better accommodate outside contributors [#895](https://github.com/open-apparel-registry/open-apparel-registry/pull/895) +- Allow superusers to change the Contributor of a Source [#901](https://github.com/open-apparel-registry/open-apparel-registry/pull/901) ### Deprecated diff --git a/src/django/api/admin.py b/src/django/api/admin.py index 1db1e095f..8fe41b2e7 100644 --- a/src/django/api/admin.py +++ b/src/django/api/admin.py @@ -108,7 +108,7 @@ class FacilityAliasAdmin(SimpleHistoryAdmin): class SourceAdmin(admin.ModelAdmin): - readonly_fields = ('contributor', 'source_type', 'facility_list', 'create') + readonly_fields = ('source_type', 'facility_list', 'create') admin_site.register(models.Version)