(req *http.Request)
| 86 | } |
| 87 | |
| 88 | func (a authenticator) reactionsAuth(req *http.Request) error { |
| 89 | claims := jwt.MapClaims{ |
| 90 | "action": "*", |
| 91 | "feed_id": "*", |
| 92 | "resource": resReactions, |
| 93 | } |
| 94 | return a.jwtSignRequest(req, claims) |
| 95 | } |
| 96 | |
| 97 | func (a authenticator) personalizationAuth(req *http.Request) error { |
| 98 | claims := jwt.MapClaims{ |
nothing calls this directly
no test coverage detected