Actions
Refactor #6097
closedNeed to migrate data model attribute from repository.feed -> repository.url
Pull request:
Fixed in Releases:
Found in Releases:
Description
On https://github.com/Katello/katello/blob/master/app/models/katello/repository.rb#L90
repository model has code that looks like => alias_attribute :url, :feed
And the controllers return "url" instead of "feed". This creates an inconsistency between the data model and the controllers. We need to address this by migrating the model from feed => url and change the place in code where "feed" is used.
Actions