def create_comment(params)
        files = params.delete(:files)
        comment = Endpoints::Comment.new(client).create(project_id, epic_id: id, params: params)
        comment.create_attachments(files: files) if files.present?
        comment