class FinApps::REST::OrderNotifications

Public Instance Methods

update(id) click to toggle source
Calls superclass method
   # File lib/finapps/rest/order_notifications.rb
 6 def update(id)
 7   not_blank(id, :id)
 8 
 9   path = "orders/#{ERB::Util.url_encode(id)}/notify"
10   super nil, path
11 end