mirror of
https://github.com/simon987/sist2.git
synced 2025-12-17 01:09:04 +00:00
Compare commits
2 Commits
930361e78c
...
3.1.3
| Author | SHA1 | Date | |
|---|---|---|---|
| ba863e4e6c | |||
| cbab4c2841 |
@@ -7,15 +7,15 @@ class Sist2AdminApi {
|
|||||||
}
|
}
|
||||||
|
|
||||||
getJobs() {
|
getJobs() {
|
||||||
return axios.get(`${this.baseUrl}/api/job/`);
|
return axios.get(`${this.baseUrl}/api/job`);
|
||||||
}
|
}
|
||||||
|
|
||||||
getFrontends() {
|
getFrontends() {
|
||||||
return axios.get(`${this.baseUrl}/api/frontend/`);
|
return axios.get(`${this.baseUrl}/api/frontend`);
|
||||||
}
|
}
|
||||||
|
|
||||||
getTasks() {
|
getTasks() {
|
||||||
return axios.get(`${this.baseUrl}/api/task/`);
|
return axios.get(`${this.baseUrl}/api/task`);
|
||||||
}
|
}
|
||||||
|
|
||||||
killTask(taskId) {
|
killTask(taskId) {
|
||||||
@@ -42,7 +42,7 @@ class Sist2AdminApi {
|
|||||||
}
|
}
|
||||||
|
|
||||||
getSearchBackends() {
|
getSearchBackends() {
|
||||||
return axios.get(`${this.baseUrl}/api/search_backend/`);
|
return axios.get(`${this.baseUrl}/api/search_backend`);
|
||||||
}
|
}
|
||||||
|
|
||||||
deleteBackend(name) {
|
deleteBackend(name) {
|
||||||
@@ -127,7 +127,7 @@ class Sist2AdminApi {
|
|||||||
}
|
}
|
||||||
|
|
||||||
getSist2AdminInfo() {
|
getSist2AdminInfo() {
|
||||||
return axios.get(`${this.baseUrl}/api/`);
|
return axios.get(`${this.baseUrl}/api`);
|
||||||
}
|
}
|
||||||
|
|
||||||
getLogsToDelete(jobName, n) {
|
getLogsToDelete(jobName, n) {
|
||||||
|
|||||||
@@ -51,11 +51,11 @@
|
|||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include "git_hash.h"
|
#include "git_hash.h"
|
||||||
|
|
||||||
#define VERSION "3.1.2"
|
#define VERSION "3.1.3"
|
||||||
static const char *const Version = VERSION;
|
static const char *const Version = VERSION;
|
||||||
static const int VersionMajor = 3;
|
static const int VersionMajor = 3;
|
||||||
static const int VersionMinor = 1;
|
static const int VersionMinor = 1;
|
||||||
static const int VersionPatch = 2;
|
static const int VersionPatch = 3;
|
||||||
|
|
||||||
#ifndef SIST_PLATFORM
|
#ifndef SIST_PLATFORM
|
||||||
#define SIST_PLATFORM unknown
|
#define SIST_PLATFORM unknown
|
||||||
|
|||||||
Reference in New Issue
Block a user