Unfuddle User Feedback

David Eisinger, Development Director

Article Category: #Code

Posted on

Recently, we wanted a better system for managing feedback from SpeakerRate users. While we do receive some general site suggestions, most of the feedback we get involves discrete corrections to data (a speaker who has been entered into the system twice, for example). We started to create a simple admin interface for managing these requests, when we realized that the ticket tracking system we use internally, Unfuddle, already has all the features we need.

Fortunately, Unfuddle has a full-featured API, so programatically creating tickets is simply a matter of adding HTTParty to our Feedback model:

class Feedback < ActiveRecord::Base include HTTParty base_uri "viget.unfuddle.com/projects/#{UNFUDDLE[:project]} validates_presence_of :description after_create :post_to_unfuddle, :if => proc { Rails.env == "production" } def post_to_unfuddle self.class.post("/tickets.xml", :basic_auth => UNFUDDLE[:auth], :query => { :ticket => ticket }) end private def ticket returning(Hash.new) do |ticket| ticket[:summary] = "#{self.topic}" ticket[:description] = "#{self.name} (#{self.email}) - #{self.created_at}:\n\n#{self.description}" ticket[:milestone_id] = UNFUDDLE[:milestone] ticket[:priority] = 3 end end end 

We store our Unfuddle configuration in config/initializers/unfuddle.rb:

UNFUDDLE = { :project => 12345, :milestone => 12345, # the 'feedback' milestone :auth => { :username => "username", :password => "password" } } 

Put your user feedback into Unfuddle, and you get all of its features: email notification, bulk ticket updates, commenting, file attachments, etc. This technique isn’t meant to replace customer-service oriented software like Get Satisfaction (we’re using both on SpeakerRate), and if you’re not already using a ticketing system to manage your project, this is probably overkill; something like Lighthouse or GitHub Issues would better suit your needs, and both have APIs if you want to set up a similar system. But for us here at Viget, who manage all aspects of our projects through a ticketing system, seeing actionable user feedback in the same place as the rest of our tasks has been extremely convenient.

David Eisinger

David is Viget's managing development director. From our Durham, NC, office, he builds high-quality, forward-thinking software for PUMA, the World Wildlife Fund, NFLPA, and many others.

More articles by David

Related Articles