Created
January 27, 2026 09:22
-
-
Save trycf/e6f8274f3e57582b7e2f444257f02857 to your computer and use it in GitHub Desktop.
TryCF Gist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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