aboutsummaryrefslogtreecommitdiffstats
path: root/models/auth
diff options
context:
space:
mode:
authorflynnnnnnnnnn <118399147+flynnnnnnnnnn@users.noreply.github.com>2022-11-27 13:20:29 -0500
committerGitHub <noreply@github.com>2022-11-27 18:20:29 +0000
commite81ccc406bf723a5a58d685e7782f281736affd4 (patch)
treebc9812f3f1779f8ce86b8f915d08aafd02e944b9 /models/auth
parentf6fd501841816f5e5c1c9a30fbc4c9a2a6f987bc (diff)
downloadgitea-e81ccc406bf723a5a58d685e7782f281736affd4.tar.gz
gitea-e81ccc406bf723a5a58d685e7782f281736affd4.zip
Implement FSFE REUSE for golang files (#21840)
Change all license headers to comply with REUSE specification. Fix #16132 Co-authored-by: flynnnnnnnnnn <flynnnnnnnnnn@github> Co-authored-by: John Olheiser <john.olheiser@gmail.com>
Diffstat (limited to 'models/auth')
-rw-r--r--models/auth/main_test.go3
-rw-r--r--models/auth/oauth2.go3
-rw-r--r--models/auth/oauth2_test.go3
-rw-r--r--models/auth/session.go3
-rw-r--r--models/auth/source.go3
-rw-r--r--models/auth/source_test.go3
-rw-r--r--models/auth/token.go3
-rw-r--r--models/auth/token_test.go3
-rw-r--r--models/auth/twofactor.go3
-rw-r--r--models/auth/webauthn.go3
-rw-r--r--models/auth/webauthn_test.go3
11 files changed, 11 insertions, 22 deletions
diff --git a/models/auth/main_test.go b/models/auth/main_test.go
index 5d52e963b8..3205d8816f 100644
--- a/models/auth/main_test.go
+++ b/models/auth/main_test.go
@@ -1,6 +1,5 @@
// Copyright 2020 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package auth_test
diff --git a/models/auth/oauth2.go b/models/auth/oauth2.go
index 2ff1066288..8e5a003d19 100644
--- a/models/auth/oauth2.go
+++ b/models/auth/oauth2.go
@@ -1,6 +1,5 @@
// Copyright 2019 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package auth
diff --git a/models/auth/oauth2_test.go b/models/auth/oauth2_test.go
index 7a4df6b9ac..80d0e9baa4 100644
--- a/models/auth/oauth2_test.go
+++ b/models/auth/oauth2_test.go
@@ -1,6 +1,5 @@
// Copyright 2019 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package auth_test
diff --git a/models/auth/session.go b/models/auth/session.go
index b5e4712bde..b60e6a903b 100644
--- a/models/auth/session.go
+++ b/models/auth/session.go
@@ -1,6 +1,5 @@
// Copyright 2020 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package auth
diff --git a/models/auth/source.go b/models/auth/source.go
index f8be5398ae..bade2fecf0 100644
--- a/models/auth/source.go
+++ b/models/auth/source.go
@@ -1,7 +1,6 @@
// Copyright 2014 The Gogs Authors. All rights reserved.
// Copyright 2019 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package auth
diff --git a/models/auth/source_test.go b/models/auth/source_test.go
index 67e96ee19e..31216cca8e 100644
--- a/models/auth/source_test.go
+++ b/models/auth/source_test.go
@@ -1,6 +1,5 @@
// Copyright 2019 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package auth_test
diff --git a/models/auth/token.go b/models/auth/token.go
index 9902b80b78..763174f08f 100644
--- a/models/auth/token.go
+++ b/models/auth/token.go
@@ -1,7 +1,6 @@
// Copyright 2014 The Gogs Authors. All rights reserved.
// Copyright 2019 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package auth
diff --git a/models/auth/token_test.go b/models/auth/token_test.go
index b27ff13406..8a1e664950 100644
--- a/models/auth/token_test.go
+++ b/models/auth/token_test.go
@@ -1,6 +1,5 @@
// Copyright 2016 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package auth_test
diff --git a/models/auth/twofactor.go b/models/auth/twofactor.go
index 736d4c340c..179d315364 100644
--- a/models/auth/twofactor.go
+++ b/models/auth/twofactor.go
@@ -1,6 +1,5 @@
// Copyright 2017 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package auth
diff --git a/models/auth/webauthn.go b/models/auth/webauthn.go
index 1575b6cbab..d5b2ceafd3 100644
--- a/models/auth/webauthn.go
+++ b/models/auth/webauthn.go
@@ -1,6 +1,5 @@
// Copyright 2020 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package auth
diff --git a/models/auth/webauthn_test.go b/models/auth/webauthn_test.go
index 29344376cc..8ba900bf89 100644
--- a/models/auth/webauthn_test.go
+++ b/models/auth/webauthn_test.go
@@ -1,6 +1,5 @@
// Copyright 2020 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package auth_test