mirror of
https://github.com/snazy2000/SnipeitPS.git
synced 2025-12-13 18:02:30 +00:00
Merge pull request #201 from PetriAsi/feature/support-images
Add _method and use always post with multipart/form-data
This commit is contained in:
commit
fab7a71abf
1 changed files with 5 additions and 1 deletions
|
|
@ -66,6 +66,10 @@
|
|||
if($null -ne $body -and $Body.Keys -contains 'image' ){
|
||||
if($PSVersionTable.PSVersion -ge '7.0'){
|
||||
$Body['image'] = get-item $body['image']
|
||||
# As multipart/form-data is always POST we need add
|
||||
# requested method for laravel named as '_method'
|
||||
$Body['_method'] = $Method
|
||||
$splatParameters["Method"] = 'POST'
|
||||
$splatParameters["Form"] = $Body
|
||||
} else {
|
||||
# use base64 encoded images for powershell version < 7
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue