2020-06-07 08:28:05 +00:00
|
|
|
class Api::V1::Accounts::Conversations::AssignmentsController < Api::V1::Accounts::Conversations::BaseController
|
2020-03-09 17:57:10 +00:00
|
|
|
# assign agent to a conversation
|
|
|
|
def create
|
2019-10-20 08:47:26 +00:00
|
|
|
# if params[:assignee_id] is not a valid id, it will set to nil, hence unassigning the conversation
|
2020-06-07 08:28:05 +00:00
|
|
|
assignee = Current.account.users.find_by(id: params[:assignee_id])
|
2019-08-14 09:48:44 +00:00
|
|
|
@conversation.update_assignee(assignee)
|
|
|
|
render json: assignee
|
|
|
|
end
|
|
|
|
end
|