| 51 | } |
| 52 | |
| 53 | type EncryptedAPIKeyPayload struct { |
| 54 | jwtutils.RegisteredClaims |
| 55 | APIKey string `json:"api_key"` |
| 56 | } |
| 57 | |
| 58 | func (e *EncryptedAPIKeyPayload) Fill(now time.Time) { |
| 59 | e.Issuer = "coderd" |
nothing calls this directly
no outgoing calls
no test coverage detected