(req *http.Request)
| 123 | } |
| 124 | |
| 125 | func (a authenticator) auditLogsAuth(req *http.Request) error { |
| 126 | claims := jwt.MapClaims{ |
| 127 | "action": "*", |
| 128 | "feed_id": "*", |
| 129 | "resource": resAuditLogs, |
| 130 | } |
| 131 | return a.jwtSignRequest(req, claims) |
| 132 | } |
| 133 | |
| 134 | func (a authenticator) signAnalyticsRedirectEndpoint(endpoint *endpoint) error { |
| 135 | claims := jwt.MapClaims{ |
nothing calls this directly
no test coverage detected