MCPcopy Create free account
hub / github.com/adcontextprotocol/adcp / clearPendingMarketingOptIn

Method clearPendingMarketingOptIn

server/src/db/slack-db.ts:953–960  ·  view source on GitHub ↗

* Clear pending marketing opt-in after it has been applied to the web account.

(slackUserId: string)

Source from the content-addressed store, hash-verified

951 * Clear pending marketing opt-in after it has been applied to the web account.
952 */
953 async clearPendingMarketingOptIn(slackUserId: string): Promise<void> {
954 await query(
955 `UPDATE slack_user_mappings
956 SET pending_marketing_opt_in = NULL, pending_marketing_opt_in_at = NULL, updated_at = NOW()
957 WHERE slack_user_id = $1`,
958 [slackUserId]
959 );
960 }
961
962}

Callers 1

tryAutoMapByEmailFunction · 0.80

Calls 1

queryFunction · 0.85

Tested by

no test coverage detected