This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Fetch all places action to test in actions/index.js | |
| import axios from 'axios'; | |
| export function fetchPlaces() { | |
| return dispatch => { | |
| return axios.get('/api/places/fetchAll') | |
| .then(resp => { | |
| dispatch(updatePlaces(resp.data)); | |
| }) | |
| .catch(err => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## This is a directory/file filter template for WinMerge | |
| name: Java Intellij Git Filter | |
| desc: Excludes compiled Java files, maven target folders, node_modules, Intellij project files, sass-cache and git folders | |
| ## This is an inclusive (loose) filter | |
| ## (it lets through everything not specified) | |
| def: include | |
| ## Ignore git | |
| d: \\\.git$ |