Skip to content
Snippets Groups Projects

Exclude archived projects from blob search

Merged Siddharth Dungarwal requested to merge 414901-excluded-archived-from-blob-search into master
All threads resolved!
Compare and Show latest version
2 files
+ 24
1
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -112,7 +112,8 @@ def fetch_blob
end
def eql?(other)
other.is_a?(self.class) && ref == other.ref && project.id == other.project.id
other.is_a?(self.class) && ref == other.ref && project.id == other.project.id &&
blob_path == other.blob_path
end
alias_method :==, :eql?
Loading