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