summaryrefslogtreecommitdiff
path: root/app/models/hooks/system_hook.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/hooks/system_hook.rb')
-rw-r--r--app/models/hooks/system_hook.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/models/hooks/system_hook.rb b/app/models/hooks/system_hook.rb
index 0528266e5b3..6bef00f26ea 100644
--- a/app/models/hooks/system_hook.rb
+++ b/app/models/hooks/system_hook.rb
@@ -11,4 +11,9 @@ class SystemHook < WebHook
default_value_for :push_events, false
default_value_for :repository_update_events, true
default_value_for :merge_requests_events, false
+
+ # Allow urls pointing localhost and the local network
+ def allow_local_requests?
+ true
+ end
end