BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
a5bb17ff
Commit
a5bb17ff
authored
Feb 01, 2018
by
Micaël Bergeron
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
porting changes from upstream
parent
c614089d
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
17 deletions
+5
-17
gitlab_uploader.rb
app/uploaders/gitlab_uploader.rb
+2
-2
groups.rb
spec/factories/groups.rb
+1
-1
projects.rb
spec/factories/projects.rb
+1
-1
users.rb
spec/factories/users.rb
+1
-1
attachment_uploader_spec.rb
spec/uploaders/attachment_uploader_spec.rb
+0
-12
No files found.
app/uploaders/gitlab_uploader.rb
View file @
a5bb17ff
...
...
@@ -35,12 +35,12 @@ class GitlabUploader < CarrierWave::Uploader::Base
# Reduce disk IO
def
move_to_cache
super
.
nil?
?
true
:
super
file_storage?
end
# Reduce disk IO
def
move_to_store
super
.
nil?
?
true
:
super
file_storage?
end
def
exists?
...
...
spec/factories/groups.rb
View file @
a5bb17ff
...
...
@@ -18,7 +18,7 @@ FactoryBot.define do
end
trait
:with_avatar
do
avatar
{
File
.
open
(
Rails
.
root
.
join
(
'spec/fixtures/dk.png'
)
)
}
avatar
{
fixture_file_upload
(
'spec/fixtures/dk.png'
)
}
end
trait
:access_requestable
do
...
...
spec/factories/projects.rb
View file @
a5bb17ff
...
...
@@ -90,7 +90,7 @@ FactoryBot.define do
end
trait
:with_avatar
do
avatar
{
File
.
open
(
Rails
.
root
.
join
(
'spec/fixtures/dk.png'
)
)
}
avatar
{
fixture_file_upload
(
'spec/fixtures/dk.png'
)
}
end
trait
:broken_storage
do
...
...
spec/factories/users.rb
View file @
a5bb17ff
...
...
@@ -38,7 +38,7 @@ FactoryBot.define do
end
trait
:with_avatar
do
avatar
{
File
.
open
(
Rails
.
root
.
join
(
'spec/fixtures/dk.png'
)
)
}
avatar
{
fixture_file_upload
(
'spec/fixtures/dk.png'
)
}
end
trait
:two_factor_via_otp
do
...
...
spec/uploaders/attachment_uploader_spec.rb
View file @
a5bb17ff
...
...
@@ -11,16 +11,4 @@ describe AttachmentUploader do
store_dir:
%r[uploads/-/system/note/attachment/]
,
upload_path:
%r[uploads/-/system/note/attachment/]
,
absolute_path:
%r[
#{
CarrierWave
.
root
}
/uploads/-/system/note/attachment/]
describe
'#move_to_cache'
do
it
'is true'
do
expect
(
uploader
.
move_to_cache
).
to
eq
(
true
)
end
end
describe
'#move_to_store'
do
it
'is true'
do
expect
(
uploader
.
move_to_store
).
to
eq
(
true
)
end
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