Take the 2008 Git User's Survey and help out! [ hide ]

public
Description: This contains various plugins for Feather
Clone URL: git://github.com/eldiablo/feather-plugins.git
Search Repo:
Click here to lend your support to: feather-plugins and make a donation at www.pledgie.com !
commit  028917ed6df9505ddc63f4ab234ad69f6e9236ef
tree    c5c9fa42dddd405092acfe6a9aecad41c7bb1725
parent  3e504c9832fad1a35843468324e09e66ef6d52e2
100644 10 lines (8 sloc) 0.2 kb
1
2
3
4
5
6
7
8
9
10
class Tags < Application
  # TODO: Make a base plugin controller that has this in it.
  include_plugin_views __FILE__
  
  def show(id)
    @tag = Tag.first(:name => id)
    display @tag
  end
  
end