profile_controller.rb 219 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 class ProfileController < ApplicationController needs_profile helper TagsHelper def index @tags = profile.tags end def tag @tag = params[:id] @tagged = profile.find_tagged_with(@tag) end end