Kvoti / redux-rest

Automatically create Redux action constants, action creators, and reducers for your REST API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support for explicit POST method

bhoomit opened this issue · comments

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.

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

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
#16 (comment),
or mute the thread
https://github.com/notifications/unsubscribe-auth/AAQO4HubX_umSWa4up4m4yu-0bvpAIDqks5qZxZxgaJpZM4I1EQg
.

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?