payment api

This commit is contained in:
Min Zeya Phyo
2017-04-18 11:01:10 +06:30
parent 6a84a34a9f
commit dbad900cd4
30 changed files with 751 additions and 32 deletions

View File

@@ -0,0 +1,19 @@
class Api::MembershipsController < ActionController::API
before :authenticate_token
#Add Membership to invoice
def create
end
private
def set_sale_params
end
def process_items
end
end