Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2397)

Unified Diff: appengine/gaeauth/server/db.go

Issue 2873113002: auth: Remove "shared" aka "global" secrets. (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | server/auth/auth_test.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/gaeauth/server/db.go
diff --git a/appengine/gaeauth/server/db.go b/appengine/gaeauth/server/db.go
index 926b201c9618d07948de5ed3bb22c1a20e7e1af8..1440ed8d8bc42986c5772f8b62046dd57bd08dd8 100644
--- a/appengine/gaeauth/server/db.go
+++ b/appengine/gaeauth/server/db.go
@@ -17,7 +17,6 @@ import (
"github.com/luci/luci-go/server/auth/authdb"
"github.com/luci/luci-go/server/auth/identity"
"github.com/luci/luci-go/server/auth/signing"
- "github.com/luci/luci-go/server/secrets"
)
// errNotConfigured is returned on real GAE if auth service URL is not set.
@@ -98,10 +97,6 @@ func (devServerDB) IsMember(c context.Context, id identity.Identity, groups ...s
return id.Kind() != identity.Anonymous, nil
}
-func (devServerDB) SharedSecrets(c context.Context) (secrets.Store, error) {
- return nil, errNotConfigured
-}
-
func (devServerDB) GetCertificates(c context.Context, id identity.Identity) (*signing.PublicCertificates, error) {
return nil, errNotConfigured
}
« no previous file with comments | « no previous file | server/auth/auth_test.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698