73322a0e55
Enables frozen string for the following: * app/controllers/*.rb * app/controllers/admin/**/*.rb * app/controllers/boards/**/*.rb * app/controllers/ci/**/*.rb * app/controllers/concerns/**/*.rb Partially addresses #47424.
23 lines
414 B
Ruby
23 lines
414 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ToggleSubscriptionAction
|
|
extend ActiveSupport::Concern
|
|
|
|
def toggle_subscription
|
|
return unless current_user
|
|
|
|
subscribable_resource.toggle_subscription(current_user, subscribable_project)
|
|
|
|
head :ok
|
|
end
|
|
|
|
private
|
|
|
|
def subscribable_project
|
|
@project ||= raise(NotImplementedError)
|
|
end
|
|
|
|
def subscribable_resource
|
|
raise NotImplementedError
|
|
end
|
|
end
|