aboutsummaryrefslogtreecommitdiffstats
path: root/interface
diff options
context:
space:
mode:
authormoisseev <moiseev@mezonplus.ru>2022-11-05 18:31:27 +0300
committermoisseev <moiseev@mezonplus.ru>2022-11-05 18:31:27 +0300
commit685665f36d7cfacff600a76eddf6d0cf28fc0cb9 (patch)
tree82902be7f32d6745482bc9c2d397e677fefe1a39 /interface
parent6684cdd168704a55bbf88725c965f8239c859cfe (diff)
downloadrspamd-685665f36d7cfacff600a76eddf6d0cf28fc0cb9.tar.gz
rspamd-685665f36d7cfacff600a76eddf6d0cf28fc0cb9.zip
[WebUI] Add legacy history version badge
Diffstat (limited to 'interface')
-rw-r--r--interface/index.html3
-rw-r--r--interface/js/app/history.js2
2 files changed, 5 insertions, 0 deletions
diff --git a/interface/index.html b/interface/index.html
index 5b1c1f0d0..b8ccfa3f6 100644
--- a/interface/index.html
+++ b/interface/index.html
@@ -584,6 +584,9 @@
<div class="card-header text-secondary py-1 d-flex">
<span class="icon mr-3"><i class="fas fa-eye"></i></span>
<span class="h6 font-weight-bolder my-2 ml-0">History</span>
+ <a href="https://rspamd.com/doc/modules/history_redis.html" target="_blank" rel="noopener noreferrer"
+ title="If you'd like to use the modern version of History, please enable History redis module."
+ id="legacy-history-badge" class="my-2 ml-2 badge badge-info" style="display: none;">Legacy version</a>
<div class="form-inline card-header-form input-group-sm align-self-center ml-auto mr-1">
<label for="selSymOrder_history">Symbols order:</label>
<select id="selSymOrder_history" class="form-control ml-1">
diff --git a/interface/js/app/history.js b/interface/js/app/history.js
index b9b3831ea..a9e40c7b4 100644
--- a/interface/js/app/history.js
+++ b/interface/js/app/history.js
@@ -349,9 +349,11 @@ define(["jquery", "footable"],
return e.rows;
}));
data.version = version;
+ $("#legacy-history-badge").hide();
} else {
// Legacy version
data = [].concat.apply([], neighbours_data);
+ $("#legacy-history-badge").show();
}
var o = process_history_data(rspamd, data);
var items = o.items;