Guest User

Untitled

a guest
Dec 10th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. module DecoratedEventHelper
  2. def decorate_event(event, promoter)
  3. if rollout.active?(:new_broadcast_flow, promoter)
  4. BroadcastFlow::V2Decorator
  5. else
  6. BroadcastFlow::V1Decorator
  7. end.decorate(event)
  8. end
  9. end
Add Comment
Please, Sign In to add comment