24 lines
477 B
Ruby
24 lines
477 B
Ruby
|
class UserCalloutsController < ApplicationController
|
||
|
def create
|
||
|
if ensure_callout.persisted?
|
||
|
respond_to do |format|
|
||
|
format.json { head :ok }
|
||
|
end
|
||
|
else
|
||
|
respond_to do |format|
|
||
|
format.json { head :bad_request }
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def ensure_callout
|
||
|
current_user.callouts.find_or_create_by(feature_name: UserCallout.feature_names[feature_name])
|
||
|
end
|
||
|
|
||
|
def feature_name
|
||
|
params.require(:feature_name)
|
||
|
end
|
||
|
end
|