You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But I've noted what mimes sending in different format for different command:
Started POST "/web_api/file_manager/actions" for 127.0.0.1 at 2017-09-19 13:40:47 +0300
ActiveRecord::SchemaMigration Load (1.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
Processing by WebApi::FileManagerController#actions as HTML
Parameters: {"cmd"=>"upload", "current"=>"Lg", "mimes"=>{"0"=>"image/jpeg", "1"=>"image/gif", "2"=>"image/png"}, "upload"=>[#<ActionDispatch::Http::UploadedFile:0x00000004c66cc8 @tempfile=#<Tempfile:/tmp/RackMultipart20170919-9360-ugd18a.png>, @original_filename="image_2017-01-27_15-21-20.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"upload[]\"; filename=\"image_2017-01-27_15-21-20.png\"\r\nContent-Type: image/png\r\n">], "mtime"=>["1485519700"]}
In this case I have an object for mimes, but in:
Started GET "/web_api/file_manager/actions?mimes%5B%5D=image%2Fjpeg&mimes%5B%5D=image%2Fgif&mimes%5B%5D=image%2Fpng&cmd=open&reload=1&target=Lg&tree=1&compare=&_=1505817647665" for 127.0.0.1 at 2017-09-19 13:40:47 +0300
Processing by WebApi::FileManagerController#actions as HTML
Parameters: {"mimes"=>["image/jpeg", "image/gif", "image/png"], "cmd"=>"open", "reload"=>"1", "target"=>"Lg", "tree"=>"1", "compare"=>"", "_"=>"1505817647665"}
I have got an array!
Is it correct behavior or I'm doing something wrong?
The text was updated successfully, but these errors were encountered:
I have next declaration for using elFinder:
But I've noted what mimes sending in different format for different command:
In this case I have an object for mimes, but in:
I have got an array!
Is it correct behavior or I'm doing something wrong?
The text was updated successfully, but these errors were encountered: