mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_http_file_share: Move Authorization type string
It belongs with the header more than the token itself
This commit is contained in:
parent
9a74f50494
commit
02595598b0
1 changed files with 2 additions and 2 deletions
|
@ -83,7 +83,7 @@ function may_upload(uploader, filename, filesize, filetype) -- > boolean, error
|
|||
end
|
||||
|
||||
function get_authz(uploader, filename, filesize, filetype, slot)
|
||||
return "Bearer "..jwt.sign(secret, {
|
||||
return jwt.sign(secret, {
|
||||
sub = uploader;
|
||||
filename = filename;
|
||||
filesize = filesize;
|
||||
|
@ -138,7 +138,7 @@ function handle_slot_request(event)
|
|||
:tag("slot", { xmlns = namespace })
|
||||
:tag("get", { url = slot_url }):up()
|
||||
:tag("put", { url = upload_url })
|
||||
:text_tag("header", authz, {name="Authorization"})
|
||||
:text_tag("header", "Bearer "..authz, {name="Authorization"})
|
||||
:reset();
|
||||
|
||||
origin.send(reply);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue