Skip to content

Commit 9bddc76

Browse files
committed
copyright
1 parent 93ee88a commit 9bddc76

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

auth/api/iam/api.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -850,9 +850,9 @@ func (r Wrapper) CreateAuthorizationRequest(ctx context.Context, client did.DID,
850850

851851
// JAR request
852852
params := map[string]string{
853-
oauth.ClientIDParam: client.String(),
853+
oauth.ClientIDParam: client.String(),
854854
oauth.RequestURIMethodParam: requestObj.RequestURIMethod,
855-
oauth.RequestURIParam: requestURI.String(),
855+
oauth.RequestURIParam: requestURI.String(),
856856
}
857857
if metadata.RequireSignedRequestObject {
858858
redirectURL := httpNuts.AddQueryParams(*endpoint, params)

auth/api/iam/jar.go

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (C) 2024 Nuts community
3+
*
4+
* This program is free software: you can redistribute it and/or modify
5+
* it under the terms of the GNU General Public License as published by
6+
* the Free Software Foundation, either version 3 of the License, or
7+
* (at your option) any later version.
8+
*
9+
* This program is distributed in the hope that it will be useful,
10+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
* GNU General Public License for more details.
13+
*
14+
* You should have received a copy of the GNU General Public License
15+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
16+
*
17+
*/
18+
119
package iam
220

321
import (

0 commit comments

Comments
 (0)