From d25d661c75e27cf7621f79d9dfc0207d100da65d Mon Sep 17 00:00:00 2001 From: Brad Rydzewski Date: Mon, 15 Apr 2019 08:25:00 -0700 Subject: [PATCH] fix secret namespace json tag --- core/secret.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/secret.go b/core/secret.go index a8ea6bea..79776f77 100644 --- a/core/secret.go +++ b/core/secret.go @@ -33,7 +33,7 @@ type ( Secret struct { ID int64 `json:"id,omitempty"` RepoID int64 `json:"repo_id,omitempty"` - Namespace string `json:"repo_namespace,omitempty"` + Namespace string `json:"namespace,omitempty"` Name string `json:"name,omitempty"` Type string `json:"type,omitempty"` Data string `json:"data,omitempty"`