2018-11-06 21:32:20 -06:00
|
|
|
const api = {}
|
|
|
|
|
|
2019-01-25 14:28:58 +00:00
|
|
|
// api.url = 'http://localhost:3000'
|
|
|
|
|
api.url = 'http://venus.acatlan.unam.mx:3010'
|
2018-11-06 21:32:20 -06:00
|
|
|
api.isAuth = function () {
|
|
|
|
|
if (window.localStorage.pcpumaT && window.localStorage.pcpumaU) {
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
api.exit = function () {
|
|
|
|
|
window.localStorage.token = null
|
|
|
|
|
window.localStorage.usuario = null
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-12 18:43:21 -06:00
|
|
|
export default api
|