Files
fizzy/saas/app/controllers/concerns/card/limited_publishing.rb
T

10 lines
174 B
Ruby

module Card::LimitedPublishing
extend ActiveSupport::Concern
included do
include Card::Limited
before_action :ensure_under_limits, only: %i[ create ]
end
end