keksAccountGUI/src/services/Server.js

11 lines
211 B
JavaScript
Raw Normal View History

2019-05-22 12:51:57 +00:00
import Api from '@/services/Api'
export default {
2019-06-20 16:04:08 +00:00
getPublicSettings (params) {
2019-05-22 12:51:57 +00:00
return Api().get('/v1/server/settings')
2019-11-22 11:06:33 +00:00
},
getStatus () {
return Api().get("/v1/status/check")
2019-05-22 12:51:57 +00:00
}
2019-11-22 11:06:33 +00:00
}