diff options
Diffstat (limited to 'app/finders/snippets_finder.rb')
-rw-r--r-- | app/finders/snippets_finder.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/finders/snippets_finder.rb b/app/finders/snippets_finder.rb index bf29f15642d..90dd9556d91 100644 --- a/app/finders/snippets_finder.rb +++ b/app/finders/snippets_finder.rb @@ -148,6 +148,8 @@ class SnippetsFinder < UnionFinder case scope when 'are_private' Snippet::PRIVATE + when 'are_secret' + Snippet::SECRET when 'are_internal' Snippet::INTERNAL when 'are_public' |