(scopes []string)
| 306 | } |
| 307 | |
| 308 | func (service *OIDCService) filterScopes(scopes []string) []string { |
| 309 | return utils.Filter(scopes, func(scope string) bool { |
| 310 | return slices.Contains(SupportedScopes, scope) |
| 311 | }) |
| 312 | } |
| 313 | |
| 314 | func (service *OIDCService) StoreCode(c *gin.Context, sub string, code string, req AuthorizeRequest) error { |
| 315 | // Fixed 10 minutes |