Skip to content

Instantly share code, notes, and snippets.

@DamirSvrtan
Created August 8, 2019 04:50
Show Gist options
  • Save DamirSvrtan/22151c491d24a3cbd6b29bf5de0805bf to your computer and use it in GitHub Desktop.
Save DamirSvrtan/22151c491d24a3cbd6b29bf5de0805bf to your computer and use it in GitHub Desktop.
module Workflows
class OnboardProduction
include NetflixInteractor
def self.call(production_id:, repo: ProductionRepo.new)
super
end
def call
# validate inputs to check if it's okay to onboard a production?
# cover edge cases
# notify others about a production being onboarded
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment