mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_http_file_share: Reorder arguments
'filetype' is optional, so having it last seems sensible. 'slot' is pretty important, so moving it earlier seems sensible.
This commit is contained in:
parent
a609c0902b
commit
2c54183cfc
1 changed files with 2 additions and 2 deletions
|
@ -121,7 +121,7 @@ function may_upload(uploader, filename, filesize, filetype) -- > boolean, error
|
|||
return true;
|
||||
end
|
||||
|
||||
function get_authz(uploader, filename, filesize, filetype, slot)
|
||||
function get_authz(slot, uploader, filename, filesize, filetype)
|
||||
return jwt.sign(secret, {
|
||||
sub = uploader;
|
||||
filename = filename;
|
||||
|
@ -175,7 +175,7 @@ function handle_slot_request(event)
|
|||
quota_cache:set(uploader, cached_quota);
|
||||
end
|
||||
|
||||
local authz = get_authz(uploader, filename, filesize, filetype, slot);
|
||||
local authz = get_authz(slot, uploader, filename, filesize, filetype);
|
||||
local slot_url = get_url(slot, filename);
|
||||
local upload_url = slot_url;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue