Skip to content

Protected packages: Use capitalized casing in setting ui table

What does this MR do and why?

  • Adjusts the letter casing for strings in the table "package protection rules"
  • This MR is a follow-up todo from the review of another MR
  • This MR tackles one checklist item, see Align letter casing across the table columns ... in #413641

🛠 with at Siemens

MR acceptance checklist

Please evaluate this MR against the MR acceptance checklist. It helps you analyze changes to reduce risks in quality, performance, reliability, security, and maintainability.

MR Checklist (@gerardo-navarro)

Screenshots or screen recordings

Before After
grafik grafik

How to set up and validate locally

  1. In rails console enable the experiment fully
Feature.enable(:packages_protected_packages)
  1. Add some package protection rules
Packages::Protection::Rule.create(project: Project.find_by_full_path('flightjs/Flight'), package_name_pattern: "@flightjs/flight-package-1", package_type: :npm, push_protected_up_to_access_level: :maintainer)

Packages::Protection::Rule.create(project: Project.find_by_full_path('flightjs/Flight'), package_name_pattern: "@flightjs/flight-package-2", package_type: :npm, push_protected_up_to_access_level: :owner)
  1. Go to http://gdk.test:3000/flightjs/Flight/-/settings/packages_and_registries

Related to #413641

Edited by Gerardo Navarro

Merge request reports