* Drops a user with an external identity provider */
| 282 | * Drops a user with an external identity provider |
| 283 | */ |
| 284 | bool |
| 285 | DropUserWithExternalIdentityProvider(const char *userName) |
| 286 | { |
| 287 | if (drop_user_with_exernal_identity_provider_hook != NULL) |
| 288 | { |
| 289 | return drop_user_with_exernal_identity_provider_hook(userName); |
| 290 | } |
| 291 | |
| 292 | return false; |
| 293 | } |
| 294 | |
| 295 | |
| 296 | /* |
no outgoing calls
no test coverage detected