Skip to content
Snippets Groups Projects
Select Git revision
  • y1
  • main default
  • y3
3 results

installation.rst

Blame
  • ApiService.js 324 B
    // SPDX-License-Identifier: Apache-2.0
    
    import api from "@/client/client";
    
    export const ApiService = {
      getToeList() {
        return api.get("/toeList");
      },
      getToeHistory(toeId) {
        return api.get("/toes/" + toeId + "/listHistory");
      },
      getTreeByStateId(stateId) {
        return api.get("/history/" + stateId);
      },
    };