summaryrefslogtreecommitdiffstats
path: root/models/organization
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/organization
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/organization')
-rw-r--r--models/organization/main_test.go3
-rw-r--r--models/organization/mini_org.go3
-rw-r--r--models/organization/org.go3
-rw-r--r--models/organization/org_repo.go3
-rw-r--r--models/organization/org_test.go3
-rw-r--r--models/organization/org_user.go3
-rw-r--r--models/organization/org_user_test.go3
-rw-r--r--models/organization/team.go3
-rw-r--r--models/organization/team_invite.go3
-rw-r--r--models/organization/team_invite_test.go3
-rw-r--r--models/organization/team_repo.go3
-rw-r--r--models/organization/team_test.go3
-rw-r--r--models/organization/team_unit.go3
-rw-r--r--models/organization/team_user.go3
14 files changed, 14 insertions, 28 deletions
diff --git a/models/organization/main_test.go b/models/organization/main_test.go
index 376552cb22..7ccf8c8efd 100644
--- a/models/organization/main_test.go
+++ b/models/organization/main_test.go
@@ -1,6 +1,5 @@
// Copyright 2021 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 organization_test
diff --git a/models/organization/mini_org.go b/models/organization/mini_org.go
index 36cf948e65..b1627b5e6c 100644
--- a/models/organization/mini_org.go
+++ b/models/organization/mini_org.go
@@ -1,6 +1,5 @@
// Copyright 2022 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 organization
diff --git a/models/organization/org.go b/models/organization/org.go
index 6bb982b281..ef7b834ad3 100644
--- a/models/organization/org.go
+++ b/models/organization/org.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 organization
diff --git a/models/organization/org_repo.go b/models/organization/org_repo.go
index 364374f71b..99638916b0 100644
--- a/models/organization/org_repo.go
+++ b/models/organization/org_repo.go
@@ -1,6 +1,5 @@
// Copyright 2022 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 organization
diff --git a/models/organization/org_test.go b/models/organization/org_test.go
index 0fba6e2592..2f821e3a4c 100644
--- a/models/organization/org_test.go
+++ b/models/organization/org_test.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 organization_test
diff --git a/models/organization/org_user.go b/models/organization/org_user.go
index 7a5d17a75a..d514e401ba 100644
--- a/models/organization/org_user.go
+++ b/models/organization/org_user.go
@@ -1,6 +1,5 @@
// Copyright 2022 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 organization
diff --git a/models/organization/org_user_test.go b/models/organization/org_user_test.go
index aed3ea23cf..1da17631e3 100644
--- a/models/organization/org_user_test.go
+++ b/models/organization/org_user_test.go
@@ -1,6 +1,5 @@
// Copyright 2022 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 organization_test
diff --git a/models/organization/team.go b/models/organization/team.go
index aa9b24b57f..f6d71845df 100644
--- a/models/organization/team.go
+++ b/models/organization/team.go
@@ -1,7 +1,6 @@
// Copyright 2018 The Gitea Authors. All rights reserved.
// Copyright 2016 The Gogs 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 organization
diff --git a/models/organization/team_invite.go b/models/organization/team_invite.go
index 4504a2e9fe..17f6c59610 100644
--- a/models/organization/team_invite.go
+++ b/models/organization/team_invite.go
@@ -1,6 +1,5 @@
// Copyright 2022 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 organization
diff --git a/models/organization/team_invite_test.go b/models/organization/team_invite_test.go
index e0596ec28d..cd6e1fe2ef 100644
--- a/models/organization/team_invite_test.go
+++ b/models/organization/team_invite_test.go
@@ -1,6 +1,5 @@
// Copyright 2022 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 organization_test
diff --git a/models/organization/team_repo.go b/models/organization/team_repo.go
index 3ac4fa926b..e6b50ecff7 100644
--- a/models/organization/team_repo.go
+++ b/models/organization/team_repo.go
@@ -1,6 +1,5 @@
// Copyright 2022 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 organization
diff --git a/models/organization/team_test.go b/models/organization/team_test.go
index c8d58a0eb7..d324c6d0da 100644
--- a/models/organization/team_test.go
+++ b/models/organization/team_test.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 organization_test
diff --git a/models/organization/team_unit.go b/models/organization/team_unit.go
index 4ad1ae95dc..7668ca7483 100644
--- a/models/organization/team_unit.go
+++ b/models/organization/team_unit.go
@@ -1,6 +1,5 @@
// Copyright 2022 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 organization
diff --git a/models/organization/team_user.go b/models/organization/team_user.go
index 80f4d00e3d..7a024f1c6d 100644
--- a/models/organization/team_user.go
+++ b/models/organization/team_user.go
@@ -1,6 +1,5 @@
// Copyright 2022 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 organization