Actions
Feature #26729
closedAdd redux middleware for API calls
Difficulty:
Triaged:
No
Pull request:
Description
https://community.theforeman.org/t/wip-proposal-refactoring-our-redux/11640
The goal is to create a new infrastructure for API communication that will make it easier to do API calls from redux controllers.
So we can create actions that will look like this:
return {
type: API_REQUEST,
action: ACTIONS.GET,
url: `/foreman_tasks/tasks/summary/${hours}`,
subType: FOREMAN_TASKS_DASHBOARD_FETCH_TASKS_SUMMARY,
normalizeResponse: (data) => data.results[0],
normalizeError: error => error.message,
onError: error => console.log(error),
}
Updated by The Foreman Bot over 5 years ago
- Pull request https://github.com/theforeman/foreman/pull/6739 added
Updated by The Foreman Bot over 5 years ago
- Status changed from New to Ready For Testing
Updated by The Foreman Bot over 5 years ago
- Pull request https://github.com/theforeman/foreman/pull/6894 added
Updated by The Foreman Bot about 5 years ago
- Pull request https://github.com/theforeman/foreman/pull/7069 added
Updated by Anonymous about 5 years ago
- Status changed from Ready For Testing to Closed
Applied in changeset 4c3432b942e1d6fef48d87efbe11ca2d066d4829.
Updated by The Foreman Bot almost 5 years ago
- Pull request https://github.com/theforeman/foreman/pull/7121 added
Updated by The Foreman Bot almost 5 years ago
- Pull request https://github.com/theforeman/foreman/pull/7157 added
Updated by The Foreman Bot almost 5 years ago
- Pull request https://github.com/theforeman/foreman/pull/7228 added
Updated by The Foreman Bot over 4 years ago
- Pull request https://github.com/theforeman/foreman/pull/7207 added
Updated by Jonathon Turel over 4 years ago
- Pull request deleted (
https://github.com/theforeman/foreman/pull/7207)
Actions