Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
bc734d34
Commit
bc734d34
authored
Oct 20, 2017
by
Nick Thomas
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '37391-wiki-disk-path-helper' into 'master'
Use wiki.disk_path See merge request gitlab-org/gitlab-ce!14930
parents
b4dc0ba2
314e5b5f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
app/services/projects/destroy_service.rb
app/services/projects/destroy_service.rb
+1
-1
lib/github/import.rb
lib/github/import.rb
+1
-1
lib/gitlab/github_import/wiki_formatter.rb
lib/gitlab/github_import/wiki_formatter.rb
+1
-1
spec/lib/gitlab/github_import/wiki_formatter_spec.rb
spec/lib/gitlab/github_import/wiki_formatter_spec.rb
+1
-1
No files found.
app/services/projects/destroy_service.rb
View file @
bc734d34
...
...
@@ -51,7 +51,7 @@ module Projects
end
def
wiki_path
repo_path
+
'.wiki'
project
.
wiki
.
disk_path
end
def
trash_repositories!
...
...
lib/github/import.rb
View file @
bc734d34
...
...
@@ -74,7 +74,7 @@ module Github
def
fetch_wiki_repository
return
if
project
.
wiki
.
repository_exists?
wiki_path
=
"
#{
project
.
disk_path
}
.wiki"
wiki_path
=
project
.
wiki
.
disk_path
gitlab_shell
.
import_repository
(
project
.
repository_storage_path
,
wiki_path
,
wiki_url
)
rescue
Gitlab
::
Shell
::
Error
=>
e
# GitHub error message when the wiki repo has not been created,
...
...
lib/gitlab/github_import/wiki_formatter.rb
View file @
bc734d34
...
...
@@ -8,7 +8,7 @@ module Gitlab
end
def
disk_path
"
#{
project
.
disk_path
}
.wiki"
project
.
wiki
.
disk_path
end
def
import_url
...
...
spec/lib/gitlab/github_import/wiki_formatter_spec.rb
View file @
bc734d34
...
...
@@ -11,7 +11,7 @@ describe Gitlab::GithubImport::WikiFormatter do
describe
'#disk_path'
do
it
'appends .wiki to project path'
do
expect
(
wiki
.
disk_path
).
to
eq
project
.
disk_path
+
'.wiki'
expect
(
wiki
.
disk_path
).
to
eq
project
.
wiki
.
disk_path
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment