MCPcopy Index your code
hub / github.com/simstudioai/sim / main

Function main

packages/db/scripts/deregister-sso-provider.ts:152–166  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

150}
151
152async function main() {
153 console.log('🗑️ Deregister SSO Provider Script')
154 console.log('====================================')
155 console.log('This script removes SSO provider records from the database.\n')
156
157 const success = await deregisterSSOProvider()
158
159 if (success) {
160 console.log('\n🎉 SSO provider deregistration completed successfully!')
161 process.exit(0)
162 } else {
163 console.log('\n💥 SSO deregistration failed. Check the logs above for details.')
164 process.exit(1)
165 }
166}
167
168main().catch((error) => {
169 logger.error('Script execution failed:', { error })

Callers 1

Calls 2

deregisterSSOProviderFunction · 0.85
logMethod · 0.80

Tested by

no test coverage detected