2a34255e0b
Co-authored-by: Subin <subinthattaparambil@gmail.com> Co-authored-by: Manoj <manojmj92@gmail.com> Co-authored-by: Nithin <webofnithin@gmail.com>
11 lines
252 B
Ruby
11 lines
252 B
Ruby
class Api::V1::SubscriptionsController < ApplicationController
|
|
skip_before_action :check_subscription
|
|
|
|
def index
|
|
render json: current_account.subscription_data
|
|
end
|
|
|
|
def status
|
|
render json: current_account.subscription.summary
|
|
end
|
|
end
|