Kvoti / redux-rest

Automatically create Redux action constants, action creators, and reducers for your REST API
MIT License
180 stars 11 forks source link

Support for explicit POST method #16

Open bhoomit opened 8 years ago

bhoomit commented 8 years ago

Right now to post something one has to call actionCreator.create.

If I want to use http POST for some other call. I can't.

In my opinion there should be one custom method parallel to list/retrieve/create/update for such cases.

bhoomit commented 8 years ago

What do you think about this feature? Do you think its important? I've added it to my fork. I can send a PR.

mallison commented 8 years ago

Can you give the use case for this? It's common to have extra actions that don't quite fit REST. Eg. /users/:id/set_password -- is that the kind of thing you mean? Being able to configure such extra actions could be useful.

It's probable the API needs to change to expose the state so that you can have extra actions and reducers as required. redux-rest's purpose is to handle the common case but it should be able to integrate with existing store/actions/reducers.

On 27 July 2016 at 09:27, Bhoomit notifications@github.com wrote:

What do you think about this feature? Do you think its important? I've added it to my fork. I can send a PR.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/Kvoti/redux-rest/issues/16#issuecomment-235520398, or mute the thread https://github.com/notifications/unsubscribe-auth/AAQO4HubX_umSWa4up4m4yu-0bvpAIDqks5qZxZxgaJpZM4I1EQg .

bhoomit commented 8 years ago

Yes, I'm talking about same kind of use cases. Most of my application uses redux-rest, I want to change method for a couple of API calls only. Should I send PR?