We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2bae06 commit e1f6a55Copy full SHA for e1f6a55
1 file changed
models/Subscriptions.cfc
@@ -242,16 +242,18 @@ component singleton accessors="true" {
242
var memento = arguments.response.getMemento();
243
memento[ "request" ] = arguments.response
244
.getRequest()
245
- .getMemento( [
246
- "authType",
247
- "clientCert",
248
- "clientCertPassword",
249
- "domain",
250
- "headers",
251
- "password",
252
- "username",
253
- "workstation"
254
- ] );
+ .getMemento(
+ excludes = [
+ "authType",
+ "clientCert",
+ "clientCertPassword",
+ "domain",
+ "headers",
+ "password",
+ "username",
+ "workstation"
255
+ ]
256
+ );
257
return {
258
"subscriber": arguments.subscriberEmail,
259
"success": arguments.response.isSuccess(),
0 commit comments