Sha256: 9dbb3e4214e3df64531384f6507c5d8c9bfcc3c786ff2c543426de13890f2eb0
Contents?: true
Size: 175 Bytes
Versions: 1
Compression:
Stored size: 175 Bytes
Contents
module Watchtower class TagsController < ApplicationController def index @tags = Tag.all end def show @tag = Tag.find(params[:id]) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
watchtower-0.0.1 | app/controllers/watchtower/tags_controller.rb |