instanceMiddleware is the authentication middleware used with gorilla
| 102 | // instanceMiddleware is the authentication middleware |
| 103 | // used with gorilla |
| 104 | type instanceMiddleware struct { |
| 105 | store dbCommon.Store |
| 106 | cfg config.JWTAuth |
| 107 | } |
| 108 | |
| 109 | // NewjwtMiddleware returns a populated jwtMiddleware |
| 110 | func NewInstanceMiddleware(store dbCommon.Store, cfg config.JWTAuth) (Middleware, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected