051871a3cd
* Chore: Code Cleanup in API controllers * Remove unnecessary scoping for accounts controller
21 lines
412 B
Ruby
21 lines
412 B
Ruby
class Api::V1::Widget::LabelsController < Api::V1::Widget::BaseController
|
|
def create
|
|
conversation.label_list.add(permitted_params[:label])
|
|
conversation.save!
|
|
|
|
head :no_content
|
|
end
|
|
|
|
def destroy
|
|
conversation.label_list.remove(permitted_params[:id])
|
|
conversation.save!
|
|
|
|
head :no_content
|
|
end
|
|
|
|
private
|
|
|
|
def permitted_params
|
|
params.permit(:id, :label, :website_token)
|
|
end
|
|
end
|