mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-13 22:59:19 +10:00
`render nothing: true` has been deprecated. For more information see [pr](https://github.com/rails/rails/pull/20336)
18 lines
283 B
Ruby
18 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
|