Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save trycf/e6f8274f3e57582b7e2f444257f02857 to your computer and use it in GitHub Desktop.

Select an option

Save trycf/e6f8274f3e57582b7e2f444257f02857 to your computer and use it in GitHub Desktop.
TryCF Gist
<cfscript>
strResponseMessage = 'Redemption Limit Met: 3 fpr tpday';
if(suppress(strResponseMessage)) {
writeOutput('Y');
} else {
writeOutput('N');
}
function suppress(string message required) {
return listContains('Redemption Limit Met|expired|auth', trim(arguments.message), '|');
}
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment