From 67c2286b2b20c3640097e0a141e3cd60464e8981 Mon Sep 17 00:00:00 2001 From: ideahitme Date: Fri, 26 May 2017 00:41:24 +0200 Subject: [PATCH] rename provider.go -> authenticator.go --- authn/authenticator/{provider.go => authenticator.go} | 0 authn/authenticator/static.go | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename authn/authenticator/{provider.go => authenticator.go} (100%) diff --git a/authn/authenticator/provider.go b/authn/authenticator/authenticator.go similarity index 100% rename from authn/authenticator/provider.go rename to authn/authenticator/authenticator.go diff --git a/authn/authenticator/static.go b/authn/authenticator/static.go index db00dec..4cbf5be 100644 --- a/authn/authenticator/static.go +++ b/authn/authenticator/static.go @@ -10,7 +10,7 @@ import ( ) // Static represents authentication mechanism via hardcoded -// token - user pair passed via files +// token - user pair passed with a csv file type Static map[string]*unversioned.UserInfo // NewStatic populates StaticAuthneticator object by reading from passed csv file