Class: PayolaSpy::SubscriptionsController

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

Instance Method Summary collapse

Instance Method Details

#indexObject



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

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

#showObject



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

def show
  @subscription = Payola::Subscription.find_by_guid! params[:id]
end