1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/controllers/api/subscriptions_controller.rb
2023-01-03 17:17:39 +01:00

32 lines
766 B
Ruby

# frozen_string_literal: true
# API Controller for resources of type Subscription
class API::SubscriptionsController < API::ApiController
before_action :set_subscription, only: %i[show payment_details cancel]
before_action :authenticate_user!
def show
authorize @subscription
end
def payment_details
authorize @subscription
end
def cancel
authorize @subscription
if @subscription.expire(DateTime.current)
render :show, status: :ok, location: @subscription
else
render json: { error: 'already expired' }, status: :unprocessable_entity
end
end
private
# Use callbacks to share common setup or constraints between actions.
def set_subscription
@subscription = Subscription.find(params[:id])
end
end