Merge branch 'ee-parity' into 'master'

Add method missing from EE

## Why was this MR needed?

`ProjectWiki#repository_exists?` is present in EE but not on CE, and there's no particular reason why it shouldn't

See merge request !5802
This commit is contained in:
Robert Speicher 2016-08-15 16:53:58 +00:00
commit 640e485c6a
1 changed files with 4 additions and 0 deletions

View File

@ -56,6 +56,10 @@ class ProjectWiki
end
end
def repository_exists?
!!repository.exists?
end
def empty?
pages.empty?
end