This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccountGUI/src/services/Server.js

14 lines
296 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
},
2019-11-22 15:13:51 +00:00
getAllSettings () {
return Api().get('/v1/server/settings?all=1')
},
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
}