Actions
Bug #12925
openNeed to break up Repository model to smaller size
Description
Repository model is close to breaking the max class length rubo cop limit.
According to our rubocop metrics, max length per class is 500 lines. Repository.rb is very close to crossing that.
https://github.com/Katello/katello/blob/master/app/models/katello/repository.rb
One approach is to split functionality to different modules and include it in the main model.
Actions