Chatwoot/app/controllers/api/v1/subscriptions_controller.rb

12 lines
252 B
Ruby
Raw Normal View History

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