diff options
author | Robert Schilling <rschilling@student.tugraz.at> | 2013-09-03 07:25:39 +0200 |
---|---|---|
committer | Robert Schilling <rschilling@student.tugraz.at> | 2013-09-03 07:25:39 +0200 |
commit | e832c4d90d3482a58d2b50ceadfdebc75c93a765 (patch) | |
tree | f3020c35eee4230be217e9e32379919173c7114e /lib | |
parent | 54faf7871ee43115e972f3cb70d93fde01f030e1 (diff) | |
download | gitlab-ce-e832c4d90d3482a58d2b50ceadfdebc75c93a765.tar.gz |
Add 'notes' to path blacklist, fixes #4967
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/blacklist.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/blacklist.rb b/lib/gitlab/blacklist.rb index 26f987b200c..2f9091e07df 100644 --- a/lib/gitlab/blacklist.rb +++ b/lib/gitlab/blacklist.rb @@ -3,7 +3,7 @@ module Gitlab extend self def path - %w(admin dashboard groups help profile projects search public assets u s teams merge_requests issues users snippets services repository hooks) + %w(admin dashboard groups help profile projects search public assets u s teams merge_requests issues users snippets services repository hooks notes) end end end |