We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f4ac86d + e1c82ad commit 6ec5014Copy full SHA for 6ec5014
qiniu/rs.js
@@ -189,6 +189,12 @@ PutPolicy.prototype.getFlags = function(putPolicy) {
189
if (this.persistentNotifyUrl != null) {
190
flags['persistentNotifyUrl'] = this.persistentNotifyUrl;
191
}
192
+ if (this.transform != null) {
193
+ flags['transform'] = this.transform;
194
+ }
195
+ if (this.fopTimeout != null) {
196
+ flags['fopTimeout'] = this.fopTimeout;
197
198
flags['deadline'] = this.expires + Math.floor(Date.now() / 1000);
199
return flags;
200
0 commit comments