From 5394b362b131d57f3d1b75c17fa866ab71488b7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20=22decko=22=20de=20Brito?= Date: Mon, 21 Jul 2025 13:05:31 -0300 Subject: [PATCH] Change Package TYPE to `npm`. --- pulp_npm/app/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pulp_npm/app/models.py b/pulp_npm/app/models.py index 619d42b..16e10c7 100644 --- a/pulp_npm/app/models.py +++ b/pulp_npm/app/models.py @@ -27,7 +27,7 @@ class Package(Content): specify uniqueness constraint to identify unit of this type. """ - TYPE = "package" + TYPE = "npm" repo_key_fields = ("name", "version") name = models.CharField(max_length=214)