Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add action_controller_api, action_controller_base on_load hook | Julian Nadeau | 2017-04-10 | 1 | -0/+1 |
| | |||||
* | [docs] remove unnecessary sentence | Hrvoje Šimić | 2017-03-11 | 1 | -4/+3 |
| | | | | [ci skip] | ||||
* | applies new string literal convention in actionpack/lib | Xavier Noria | 2016-08-06 | 1 | -3/+3 |
| | | | | | The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default. | ||||
* | quick edits on the AC::API RDoc [ci skip] | Xavier Noria | 2016-04-05 | 1 | -19/+20 |
| | | | | | | | | | | | In particular, the fact that ApplicationController is the only one inheriting from AC::API is not a default. You could say at most that generators generate them that way, but the creation of controllers is something which is out of our control because programmers write controllers by hand. Instead, we can say that normally, conventionally, as in the majority of Rails apps, that is the actually the case. | ||||
* | Re-add ActionController::ApiRendering | Jon Moss | 2016-01-20 | 1 | -1/+1 |
| | | | | | - Fixes bug #23142. - Bug was occurring only with ActionController::API, because `_process_options` wasn't being run for API requests, even though it was being run for normal app requests. | ||||
* | remove RackDelegation module | Aaron Patterson | 2015-08-26 | 1 | -1/+0 |
| | | | | | | Since all controller instances are required to have a request and response object, RackDelegation is no longer needed (we always have to delegate to the response) | ||||
* | docs, custom api base controllers shoudl subclass metal. [ci skip] | Yves Senn | 2015-08-01 | 1 | -1/+1 |
| | | | | This is a follow up to #21008. | ||||
* | A few documentation edits [ci skip] | Robin Dupret | 2015-06-15 | 1 | -9/+11 |
| | |||||
* | Mention that doing nothing in Rails API controllers returns 204 | Santiago Pastorino | 2015-06-11 | 1 | -1/+1 |
| | |||||
* | Return 204 if render is not called in API controllers | Jorge Bejar | 2015-06-11 | 1 | -0/+1 |
| | |||||
* | Include ParamsWrapper in AC::API | Jorge Bejar | 2015-06-11 | 1 | -1/+5 |
| | | | | | | | | | ParamsWrapper was initially removed from API controllers according to the following discusision: https://github.com/rails-api/rails-api/issues/33 However, we're including it again so Rails API devs can decide whether to enable or disable it. | ||||
* | Fix MimeResponds example in AC::API documentation | Santiago Pastorino | 2015-06-11 | 1 | -3/+5 |
| | |||||
* | Do not say that Api Controllers are faster than regular ones in docs | Jorge Bejar | 2015-06-11 | 1 | -4/+4 |
| | |||||
* | Remove Compatibility module since we don't remember why it was added :smile: | Jorge Bejar | 2015-06-11 | 1 | -19/+0 |
| | |||||
* | Remove api_rendering is not needed | Santiago Pastorino | 2015-06-11 | 1 | -1/+1 |
| | |||||
* | Add ActionController API functionality | Santiago Pastorino | 2015-06-11 | 1 | -0/+157 |