chore: Fix RestClient::GatewayTimeout, label_list of NilClass (#1243)

This commit is contained in:
Sojan Jose
2020-09-18 18:50:53 +05:30
committed by GitHub
parent 646746aa10
commit 74d07c876e
3 changed files with 11 additions and 7 deletions

View File

@@ -1,14 +1,18 @@
class Api::V1::Widget::LabelsController < Api::V1::Widget::BaseController
def create
conversation.label_list.add(permitted_params[:label])
conversation.save!
if conversation.present?
conversation.label_list.add(permitted_params[:label])
conversation.save!
end
head :no_content
end
def destroy
conversation.label_list.remove(permitted_params[:id])
conversation.save!
if conversation.present?
conversation.label_list.remove(permitted_params[:id])
conversation.save!
end
head :no_content
end