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.
1 parent f2ce503 commit ab74c38Copy full SHA for ab74c38
qiniu/rs.js
@@ -183,6 +183,12 @@ PutPolicy.prototype.getFlags = function(putPolicy) {
183
if (this.endUser != null) {
184
flags['endUser'] = this.endUser;
185
}
186
+ if (this.persistentOps != null) {
187
+ flag['persistentOps'] = this.persistentOps;
188
+ }
189
+ if (this.persistentNotifyUrl != null) {
190
+ flag['persistentNotifyUrl'] = this.persistentNotifyUrl;
191
192
flags['deadline'] = this.expires + Math.floor(Date.now() / 1000);
193
return flags;
194
0 commit comments