config/routes/api.rb in lato_blog-2.1.2 vs config/routes/api.rb in lato_blog-2.2.0
- old
+ new
@@ -6,6 +6,10 @@
# categories
get 'categories', to: 'categories#index', as: 'categories_index'
get 'category', to: 'categories#show', as: 'categories_show'
+ # tags
+ get 'tags', to: 'tags#index', as: 'tags_index'
+ get 'tag', to: 'tags#show', as: 'tags_show'
+
end