fun mapAction()

in android/src/main/java/com/google/recaptchaenterprisereactnative/RecaptchaEnterpriseReactNativeModule.kt [42:50]


  fun mapAction(actionStr: String): RecaptchaAction {
    if (actionStr.equals("login", ignoreCase = false)) {
      return RecaptchaAction.LOGIN
    } else if (actionStr.equals("signup", ignoreCase = false)) {
      return RecaptchaAction.SIGNUP
    } else {
      return RecaptchaAction.custom(actionStr)
    }
  }