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/plan_limitations_controller.rb
2023-03-13 14:19:51 +01:00

13 lines
381 B
Ruby

# frozen_string_literal: true
# API Controller for resources of type PlanLimitation
# PlanLimitation allows to restrict bookings of resources for the subscribers of that plan.
class API::PlanLimitationsController < API::ApiController
def destroy
@limitation = PlanLimitation.find(params[:id])
authorize @limitation
@limitation.destroy
head :no_content
end
end