Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 14197 | Rev 14201 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 14197 Rev 14199
Línea 40... Línea 40...
40
		current: 1,
40
		current: 1,
41
		last: 1
41
		last: 1
42
	})
42
	})
Línea 43... Línea 43...
43
 
43
 
44
	const getData = ({ url = '', params = {} }) => {
44
	const getData = ({ url = '', params = {} }) => {
45
		axios.post(url, { params: { ...params } })
45
		axios.get(url, { params: { ...params } })
46
			.then(({ data }) => {
46
			.then(({ data }) => {
47
				if (!data.success) {
47
				if (!data.success) {
48
					return dispatch(addNotification({
48
					return dispatch(addNotification({
49
						style: 'danger',
49
						style: 'danger',
Línea 62... Línea 62...
62
				msg: 'Ha ocurrido un error'
62
				msg: 'Ha ocurrido un error'
63
			})))
63
			})))
64
	}
64
	}
Línea 65... Línea 65...
65
 
65
 
66
	const getImport = () => {
66
	const getImport = () => {
67
		axios.get(import_link)
67
		axios.post(import_link)
68
			.then(({ data }) => {
68
			.then(({ data }) => {
69
				if (!data.success) {
69
				if (!data.success) {
70
					dispatch(addNotification({
70
					dispatch(addNotification({
71
						style: 'danger',
71
						style: 'danger',