1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-02 20:35:25 +02:00

fix(app): remove passwords from registries list response (#334)

This commit is contained in:
LP B 2025-01-22 17:40:21 +01:00 committed by GitHub
parent 7f089fab86
commit 9044b25a23
3 changed files with 4 additions and 2 deletions

View file

@ -70,7 +70,6 @@ export interface Registry {
BaseURL: string;
Authentication: boolean;
Username: string;
Password?: string;
RegistryAccesses: RegistryAccesses | null;
Gitlab: Gitlab;
Quay: Quay;

View file

@ -15,7 +15,6 @@ function buildTestRegistry(
Name: name,
Username: '',
Authentication: false,
Password: '',
BaseURL: '',
Ecr: { Region: '' },
Github: { OrganisationName: '', UseOrganisation: false },