Class: Vindi::Generators::WebhookGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Defined in:
lib/generators/vindi/webhook_generator.rb

Instance Method Summary collapse

Instance Method Details

#copy_webhook_filesObject



12
13
14
15
16
# File 'lib/generators/vindi/webhook_generator.rb', line 12

def copy_webhook_files
  template "webhooks_controller.rb", "app/controllers/vindi/webhooks_controller.rb"
  template "webhook_job.rb", "app/jobs/vindi/webhook_job.rb"
  route 'post "/vindi/webhooks" => "vindi/webhooks#create"'
end