Unexported function to comply with golint
Signed-off-by: Dave Trombley <dave.trombley@gmail.com>master
							parent
							
								
									e4c3ab4377
								
							
						
					
					
						commit
						abd142855a
					
				|  | @ -44,7 +44,7 @@ func newAccessController(options map[string]interface{}) (auth.AccessController, | |||
| 		return nil, fmt.Errorf(`"path" must be set for basic access controller`) | ||||
| 	} | ||||
| 
 | ||||
| 	return &accessController{realm: realm.(string), htpasswd: NewHTPasswd(path.(string))}, nil | ||||
| 	return &accessController{realm: realm.(string), htpasswd: newHTPasswd(path.(string))}, nil | ||||
| } | ||||
| 
 | ||||
| func (ac *accessController) Authorized(ctx context.Context, accessRecords ...auth.Access) (context.Context, error) { | ||||
|  |  | |||
|  | @ -55,7 +55,7 @@ func (at AuthType) String() string { | |||
| } | ||||
| 
 | ||||
| // NewHTPasswd Create a new HTPasswd with the given path to .htpasswd file.
 | ||||
| func NewHTPasswd(htpath string) *htpasswd { | ||||
| func newHTPasswd(htpath string) *htpasswd { | ||||
| 	return &htpasswd{path: htpath} | ||||
| } | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue