- # Load the preference of whether the user set the trace public the last time
- @trace = Trace.new
- visibility = @user.preferences.find(:first, :conditions => {:k => "gps.trace.visibility"})
- if visibility
- @trace.visibility = visibility.v
- elsif @user.preferences.find(:first, :conditions => {:k => "gps.trace.public", :v => "default"}).nil?
- @trace.visibility = "private"
- else
- @trace.visibility = "public"
- end
- list(@user, "mine")