summaryrefslogtreecommitdiffstats
path: root/routers/web/user
diff options
context:
space:
mode:
Diffstat (limited to 'routers/web/user')
-rw-r--r--routers/web/user/avatar.go3
-rw-r--r--routers/web/user/code.go3
-rw-r--r--routers/web/user/home.go3
-rw-r--r--routers/web/user/home_test.go3
-rw-r--r--routers/web/user/main_test.go3
-rw-r--r--routers/web/user/notification.go3
-rw-r--r--routers/web/user/package.go3
-rw-r--r--routers/web/user/profile.go3
-rw-r--r--routers/web/user/search.go3
-rw-r--r--routers/web/user/setting/account.go3
-rw-r--r--routers/web/user/setting/account_test.go3
-rw-r--r--routers/web/user/setting/adopt.go3
-rw-r--r--routers/web/user/setting/applications.go3
-rw-r--r--routers/web/user/setting/keys.go3
-rw-r--r--routers/web/user/setting/main_test.go3
-rw-r--r--routers/web/user/setting/oauth2.go3
-rw-r--r--routers/web/user/setting/oauth2_common.go3
-rw-r--r--routers/web/user/setting/profile.go3
-rw-r--r--routers/web/user/setting/security/2fa.go3
-rw-r--r--routers/web/user/setting/security/openid.go3
-rw-r--r--routers/web/user/setting/security/security.go3
-rw-r--r--routers/web/user/setting/security/webauthn.go3
-rw-r--r--routers/web/user/stop_watch.go3
-rw-r--r--routers/web/user/task.go3
24 files changed, 24 insertions, 48 deletions
diff --git a/routers/web/user/avatar.go b/routers/web/user/avatar.go
index 05896299d2..20c2ef3e47 100644
--- a/routers/web/user/avatar.go
+++ b/routers/web/user/avatar.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 user
diff --git a/routers/web/user/code.go b/routers/web/user/code.go
index 89bd23588b..0f95932061 100644
--- a/routers/web/user/code.go
+++ b/routers/web/user/code.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 user
diff --git a/routers/web/user/home.go b/routers/web/user/home.go
index e67202b284..fc4c919de3 100644
--- a/routers/web/user/home.go
+++ b/routers/web/user/home.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 user
diff --git a/routers/web/user/home_test.go b/routers/web/user/home_test.go
index 36e99bba5e..a75b3573a0 100644
--- a/routers/web/user/home_test.go
+++ b/routers/web/user/home_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 user
diff --git a/routers/web/user/main_test.go b/routers/web/user/main_test.go
index 517957a85c..925482a1d2 100644
--- a/routers/web/user/main_test.go
+++ b/routers/web/user/main_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 user
diff --git a/routers/web/user/notification.go b/routers/web/user/notification.go
index 323422a1b9..b21d52bbfd 100644
--- a/routers/web/user/notification.go
+++ b/routers/web/user/notification.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 user
diff --git a/routers/web/user/package.go b/routers/web/user/package.go
index 7be37b6a50..ae4c239c70 100644
--- a/routers/web/user/package.go
+++ b/routers/web/user/package.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 user
diff --git a/routers/web/user/profile.go b/routers/web/user/profile.go
index 982290e0ab..0002d56de0 100644
--- a/routers/web/user/profile.go
+++ b/routers/web/user/profile.go
@@ -1,7 +1,6 @@
// Copyright 2015 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 user
diff --git a/routers/web/user/search.go b/routers/web/user/search.go
index 328c7bade4..093de406a9 100644
--- a/routers/web/user/search.go
+++ b/routers/web/user/search.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 user
diff --git a/routers/web/user/setting/account.go b/routers/web/user/setting/account.go
index 8b95caf2fc..95b3b4040d 100644
--- a/routers/web/user/setting/account.go
+++ b/routers/web/user/setting/account.go
@@ -1,7 +1,6 @@
// Copyright 2014 The Gogs Authors. All rights reserved.
// Copyright 2018 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 setting
diff --git a/routers/web/user/setting/account_test.go b/routers/web/user/setting/account_test.go
index 005603e7ac..5fce41f065 100644
--- a/routers/web/user/setting/account_test.go
+++ b/routers/web/user/setting/account_test.go
@@ -1,6 +1,5 @@
// Copyright 2018 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 setting
diff --git a/routers/web/user/setting/adopt.go b/routers/web/user/setting/adopt.go
index a92aa6e989..0aaf5920bc 100644
--- a/routers/web/user/setting/adopt.go
+++ b/routers/web/user/setting/adopt.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 setting
diff --git a/routers/web/user/setting/applications.go b/routers/web/user/setting/applications.go
index e9572a07a6..23c215738d 100644
--- a/routers/web/user/setting/applications.go
+++ b/routers/web/user/setting/applications.go
@@ -1,7 +1,6 @@
// Copyright 2014 The Gogs Authors. All rights reserved.
// Copyright 2018 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 setting
diff --git a/routers/web/user/setting/keys.go b/routers/web/user/setting/keys.go
index a8d07ea47a..89be795599 100644
--- a/routers/web/user/setting/keys.go
+++ b/routers/web/user/setting/keys.go
@@ -1,7 +1,6 @@
// Copyright 2014 The Gogs Authors. All rights reserved.
// Copyright 2018 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 setting
diff --git a/routers/web/user/setting/main_test.go b/routers/web/user/setting/main_test.go
index d4df464abd..c3938b3201 100644
--- a/routers/web/user/setting/main_test.go
+++ b/routers/web/user/setting/main_test.go
@@ -1,6 +1,5 @@
// Copyright 2018 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 setting
diff --git a/routers/web/user/setting/oauth2.go b/routers/web/user/setting/oauth2.go
index 0cc05dd040..93142c21fc 100644
--- a/routers/web/user/setting/oauth2.go
+++ b/routers/web/user/setting/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 setting
diff --git a/routers/web/user/setting/oauth2_common.go b/routers/web/user/setting/oauth2_common.go
index 49ee5c7c2f..f6ad1b2b38 100644
--- a/routers/web/user/setting/oauth2_common.go
+++ b/routers/web/user/setting/oauth2_common.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 setting
diff --git a/routers/web/user/setting/profile.go b/routers/web/user/setting/profile.go
index ba3f5b5080..e46724f2e7 100644
--- a/routers/web/user/setting/profile.go
+++ b/routers/web/user/setting/profile.go
@@ -1,7 +1,6 @@
// Copyright 2014 The Gogs Authors. All rights reserved.
// Copyright 2018 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 setting
diff --git a/routers/web/user/setting/security/2fa.go b/routers/web/user/setting/security/2fa.go
index 5fd81bae41..0cecb1aa37 100644
--- a/routers/web/user/setting/security/2fa.go
+++ b/routers/web/user/setting/security/2fa.go
@@ -1,7 +1,6 @@
// Copyright 2014 The Gogs Authors. All rights reserved.
// Copyright 2018 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 security
diff --git a/routers/web/user/setting/security/openid.go b/routers/web/user/setting/security/openid.go
index a378c8bf64..08fcb6b623 100644
--- a/routers/web/user/setting/security/openid.go
+++ b/routers/web/user/setting/security/openid.go
@@ -1,6 +1,5 @@
// Copyright 2018 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 security
diff --git a/routers/web/user/setting/security/security.go b/routers/web/user/setting/security/security.go
index 57ea24eeb1..db6faaed6e 100644
--- a/routers/web/user/setting/security/security.go
+++ b/routers/web/user/setting/security/security.go
@@ -1,7 +1,6 @@
// Copyright 2014 The Gogs Authors. All rights reserved.
// Copyright 2018 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 security
diff --git a/routers/web/user/setting/security/webauthn.go b/routers/web/user/setting/security/webauthn.go
index bb2d1f733e..ba05996a1c 100644
--- a/routers/web/user/setting/security/webauthn.go
+++ b/routers/web/user/setting/security/webauthn.go
@@ -1,6 +1,5 @@
// Copyright 2018 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 security
diff --git a/routers/web/user/stop_watch.go b/routers/web/user/stop_watch.go
index f40d850fc1..26c7558c11 100644
--- a/routers/web/user/stop_watch.go
+++ b/routers/web/user/stop_watch.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 user
diff --git a/routers/web/user/task.go b/routers/web/user/task.go
index 7f5ef792ad..3818682403 100644
--- a/routers/web/user/task.go
+++ b/routers/web/user/task.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 user