Created
August 8, 2019 04:50
-
-
Save DamirSvrtan/22151c491d24a3cbd6b29bf5de0805bf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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