051871a3cd
* Chore: Code Cleanup in API controllers * Remove unnecessary scoping for accounts controller
9 lines
416 B
Ruby
9 lines
416 B
Ruby
class Api::V1::Accounts::Conversations::AssignmentsController < Api::V1::Accounts::Conversations::BaseController
|
|
# assign agent to a conversation
|
|
def create
|
|
# if params[:assignee_id] is not a valid id, it will set to nil, hence unassigning the conversation
|
|
assignee = Current.account.users.find_by(id: params[:assignee_id])
|
|
@conversation.update_assignee(assignee)
|
|
render json: assignee
|
|
end
|
|
end
|