journalduhacker/app/controllers/tags_controller.rb
joshua stein 09fd14dd93 add a tag cloud thingy
closes #236
2015-11-09 09:52:32 -06:00

11 lines
242 B
Ruby

class TagsController < ApplicationController
def index
@tags = Tag.all_with_story_counts_for(nil)
respond_to do |format|
format.html { render :action => "index" }
format.json { render :json => @tags }
end
end
end