mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-01 12:24:28 +01:00
13 lines
376 B
Ruby
13 lines
376 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 PlanLimitationsController < API::ApiController
|
||
|
def destroy
|
||
|
@limitation = PlanLimitation.find(params[:id])
|
||
|
authorize @limitation
|
||
|
@limitation.destroy
|
||
|
head :no_content
|
||
|
end
|
||
|
end
|