client/src/reducers/miscReducer.js
changeset 107 e6f85e26b08c
parent 72 7634b424f426
child 129 d48946d164c6
equal deleted inserted replaced
106:fffefefed507 107:e6f85e26b08c
     7     default:
     7     default:
     8       return state;
     8       return state;
     9   }
     9   }
    10 }
    10 }
    11 
    11 
    12 
    12 export const outbox = (state = [], action) => {
       
    13   switch (action.type) {
       
    14     case types.OFFLINE_PURGE_OUTBOX:
       
    15       // FIXME Does not work
       
    16       // Need to find a way to purge outbox
       
    17       // @see https://github.com/jevakallio/redux-offline/issues/68
       
    18       return state;
       
    19     default:
       
    20       return state;
       
    21   }
       
    22 }