DocSpace-buildtools/web/ASC.Web.Client/tests/mocking/endpoints.js

71 lines
1.6 KiB
JavaScript
Raw Normal View History

2022-02-18 11:03:09 +00:00
module.exports = class Endpoints {
static confirm = {
url: ["http://localhost:8092/api/2.0/authentication/confirm.json"],
method: "POST",
baseDir: "user",
};
2022-02-18 14:53:35 +00:00
static settings = {
url: ["http://localhost:8092/api/2.0/settings.json"],
method: "GET",
baseDir: "settings",
};
2022-02-21 19:12:16 +00:00
static build = {
url: ["http://localhost:8092/api/2.0/settings/version/build.json"],
method: "GET",
baseDir: "settings",
};
static password = {
url: ["http://localhost:8092/api/2.0/settings/security/password"],
method: "GET",
baseDir: "settings",
};
static providers = {
url: ["http://localhost:8092/api/2.0/people/thirdparty/providers"],
method: "GET",
baseDir: "people",
};
2022-02-22 13:25:38 +00:00
static code = {
url: ["http://localhost:8092/api/2.0/authentication/123456"],
method: "POST",
baseDir: "auth",
};
static self = {
url: [
"http://localhost:8092/api/2.0/people/@self.json",
"http://localhost:8092/api/2.0/people/%40self.json",
],
method: "GET",
baseDir: "people",
};
static info = {
url: ["http://localhost:8092/api/2.0/modules/info"],
method: "GET",
baseDir: "modules",
};
2022-02-24 19:44:54 +00:00
static setup = {
url: ["http://localhost:8092/api/2.0/settings/tfaapp/setup"],
method: "GET",
baseDir: "settings",
};
2022-02-24 20:01:52 +00:00
static validation = {
url: ["http://localhost:8092/api/2.0/settings/tfaapp/validate"],
method: "POST",
baseDir: "settings",
};
static cultures = {
url: ["http://localhost:8092/api/2.0/settings/cultures.json"],
method: "GET",
baseDir: "settings",
};
2022-02-18 11:03:09 +00:00
};