Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-12-07 03:08:33 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-12-07 03:08:33 +0300
commitc9a3dc1c2464a92a8f2a5c2f4f30883aa9f976f1 (patch)
treea56df6907c26f0aa59f2c6e211e0cc7aea61e026 /app/controllers
parentaa74b7b4c5f326e82fcd6bb681296dce435ea024 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/well_known_controller.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/app/controllers/well_known_controller.rb b/app/controllers/well_known_controller.rb
new file mode 100644
index 00000000000..9ca38a81b11
--- /dev/null
+++ b/app/controllers/well_known_controller.rb
@@ -0,0 +1,19 @@
+# frozen_string_literal: true
+
+# This controller implements /.well-known paths that have no better home.
+#
+# Other controllers also implement /.well-known/* paths. They can be
+# discovered by running `rails routes | grep "well-known"`.
+class WellKnownController < ApplicationController # rubocop:disable Gitlab/NamespacedClass -- No relevant product domain exists
+ skip_before_action :authenticate_user!, :check_two_factor_requirement
+ feature_category :compliance_management, [:security_txt]
+
+ def security_txt
+ content = Gitlab::CurrentSettings.current_application_settings.security_txt_content
+ if content.present?
+ render plain: content
+ else
+ route_not_found
+ end
+ end
+end