fix avatar uploader error
This commit is contained in:
parent
fab1556396
commit
78cd19631a
2 changed files with 9 additions and 1 deletions
|
@ -19,7 +19,7 @@ class AvatarUploader < GitlabUploader
|
|||
end
|
||||
|
||||
def absolute_path
|
||||
self.class.absolute_path(model.avatar)
|
||||
self.class.absolute_path(model.avatar.upload)
|
||||
end
|
||||
|
||||
private
|
||||
|
|
|
@ -35,5 +35,13 @@ describe AvatarUploader do
|
|||
|
||||
it_behaves_like "migrates", to_store: described_class::Store::REMOTE
|
||||
it_behaves_like "migrates", from_store: described_class::Store::REMOTE, to_store: described_class::Store::LOCAL
|
||||
|
||||
it 'sets the right absolute path' do
|
||||
storage_path = Gitlab.config.uploads.storage_path
|
||||
absolute_path = File.join(storage_path, upload.path)
|
||||
|
||||
expect(uploader.absolute_path.scan(storage_path).size).to eq(1)
|
||||
expect(uploader.absolute_path).to eq(absolute_path)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue