Manos Chorianopoulos

delete unnecesary events

......@@ -87,36 +87,6 @@ extension CouponsViewController: UITableViewDelegate, UITableViewDataSource{
// SwiftEventBus.post("couponBarcodePressed", sender: coupons[indexPath.row])
// firebase event
let firebaseEvent = swiftApi.LoyaltySDKFirebaseEventModel()
firebaseEvent._eventName = "abc"
firebaseEvent.setParameter = ("1", "asd")
SwiftEventBus.post("firebase", sender: firebaseEvent)
// ccms event
let ccms = swiftApi.LoyaltyContextualOfferModel()
SwiftEventBus.post("ccms", sender: ccms)
// pacing_visible event
let pacingEvent = swiftApi.WarplyPacingCardEventModel()
pacingEvent._isVisible = true
SwiftEventBus.post("pacing_visible", sender: pacingEvent)
// pacing_service event
let pacingService = swiftApi.WarplyPacingCardServiceEnabledModel()
pacingService._isEnabled = true
SwiftEventBus.post("pacing_service", sender: pacingService)
// analysis_pressed event
let dealsAnalysis = swiftApi.WarplyDealsAnalysisEventModel()
dealsAnalysis._isPressed = true
SwiftEventBus.post("analysis_pressed", sender: dealsAnalysis)
// ccms_enabled event
let ccmsEnabled = swiftApi.WarplyCCMSEnabledModel()
ccmsEnabled._isActivated = true
SwiftEventBus.post("ccms_enabled", sender: ccmsEnabled)
let storyboard = UIStoryboard(name: "Main", bundle: Bundle(for: MyEmptyClass.self))
let vc = storyboard.instantiateViewController(withIdentifier: "CouponBarcodeViewController") as! SwiftWarplyFramework.CouponBarcodeViewController
vc.coupon = coupons[indexPath.row]
......