Class: PayolaSpy::StripeWebhooksController

Inherits:
ApplicationController show all
Defined in:
app/controllers/payola_spy/stripe_webhooks_controller.rb

Instance Method Summary collapse

Instance Method Details

#indexObject



5
6
7
# File 'app/controllers/payola_spy/stripe_webhooks_controller.rb', line 5

def index
  @stripe_webhooks = Payola::StripeWebhook.order("created_at desc").page params[:page]
end

#showObject



9
10
11
# File 'app/controllers/payola_spy/stripe_webhooks_controller.rb', line 9

def show
  @stripe_webhook = Payola::StripeWebhook.find params[:id]
end