Sha256: d8690285371ed1e8ebc16b32e93df38af7bb06d5b2d5cb5aaa445a8e4ab494c9
Contents?: true
Size: 338 Bytes
Versions: 3
Compression:
Stored size: 338 Bytes
Contents
require_dependency "payola_spy/application_controller" module PayolaSpy class StripeWebhooksController < ApplicationController def index @stripe_webhooks = Payola::StripeWebhook.order("created_at desc").page params[:page] end def show @stripe_webhook = Payola::StripeWebhook.find params[:id] end end end
Version data entries
3 entries across 3 versions & 1 rubygems