Skip to content

Remove cluster association code duplication

What does this MR do?

Follow-up MR for comment: gitlab-foss!32559 (comment 215257593)

@DylanGriffith commented:

This MR is introducing several more instances of the application_#{application_name} thing. It seems to also introduce duplication of self.to_s.demodulize.underscore where there are many hardcoded examples already and now a dynamic method creating this thing. So perhaps it makes sense to actually introduce a method on ApplicationCore like:

def self.application_name
  self.to_s.demodulize.underscore
end

def self.association_name
  :"application_#{association_name}"
end

Screenshots

Does this MR meet the acceptance criteria?

Conformity

Performance and Testing

Security

If this MR contains changes to processing or storing of credentials or tokens, authorization and authentication methods and other items described in the security review guidelines:

  • Label as security and @ mention @gitlab-com/gl-security/appsec
  • The MR includes necessary changes to maintain consistency between UI, API, email, or other methods
  • Security reports checked/validated by a reviewer from the AppSec team
Edited by 🤖 GitLab Bot 🤖

Merge request reports