Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mheiber/redux-machine
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: dev
Choose a base ref
...
head repository: mheiber/redux-machine
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: support-immutable-js
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 3 commits
  • 2 files changed
  • 2 contributors

Commits on Nov 7, 2016

  1. Allow users to define their own status getter and setter

    This will allow
    1) to use other field instead of ‘status’
    2) to use Immutable.js of similar libraries:
    
    ```
    const fetchUsersReducer_ = createMachine({
        'INIT': immutableInitReducer,
        'IN_PROGRESS': immutableInProgressReducer
    }, (state) => state.get('my_status'), (state, status) =>
    state.set('my_status', status))
    
    ```
    evgenykochetkov committed Nov 7, 2016
    Configuration menu
    Copy the full SHA
    9887881 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2016

  1. Configuration menu
    Copy the full SHA
    8284b23 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #7 from evgenykochetkov/support-immutable-libs

    Allow users to define their own status getter and setter
    mheiber authored Nov 8, 2016
    Configuration menu
    Copy the full SHA
    10cb057 View commit details
    Browse the repository at this point in the history
Loading