6a0ea605e8
`render nothing: true` has been deprecated. For more information see [pr](https://github.com/rails/rails/pull/20336)
17 lines
283 B
Ruby
17 lines
283 B
Ruby
module ToggleSubscriptionAction
|
|
extend ActiveSupport::Concern
|
|
|
|
def toggle_subscription
|
|
return unless current_user
|
|
|
|
subscribable_resource.toggle_subscription(current_user)
|
|
|
|
head :ok
|
|
end
|
|
|
|
private
|
|
|
|
def subscribable_resource
|
|
raise NotImplementedError
|
|
end
|
|
end
|