Method: Ems::TagsController#show

Defined in:
app/controllers/ems/tags_controller.rb

#showObject

GET /tags/1 GET /tags/1.json



23
24
25
26
27
28
29
30
# File 'app/controllers/ems/tags_controller.rb', line 23

def show
  @tag = Tag.find(params[:id])

  respond_to do |format|
    format.html # edit.html.erb
    format.json { render json: @tag }
  end
end