1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Add CHANGELOG entries for API apps functionality

This commit is contained in:
Santiago Pastorino 2015-05-14 18:46:29 -03:00
parent b7494b66bc
commit f3df21649a
2 changed files with 13 additions and 0 deletions

View file

@ -1,3 +1,9 @@
* Add support for API only apps.
ActionController::API is added as a replacement of
ActionController::Base for this kind of applications.
*Santiago Pastorino & Jorge Bejar*
* Remove `assigns` and `assert_template`. Both methods have been extracted
into a gem at https://github.com/rails/rails-controller-testing.

View file

@ -1,3 +1,10 @@
* Add support for API only apps.
Middleware stack was slimmed down and it has only the needed
middleware for API apps & generators generates the right files,
folders and configurations.
*Santiago Pastorino & Jorge Bejar*
* Make generated scaffold functional tests work inside engines.
*Yuji Yaginuma*