From c81ea54c879539ace37dd420b20fb188e0eff765 Mon Sep 17 00:00:00 2001 From: Ralph Slooten Date: Sun, 5 May 2024 15:50:56 +1200 Subject: [PATCH] Remove redundant references to beta testing --- server/apiv1/api.go | 11 ++---- .../components/message/SpamAssassin.vue | 39 ++++++++++--------- server/ui/api/v1/swagger.json | 8 ++-- 3 files changed, 28 insertions(+), 30 deletions(-) diff --git a/server/apiv1/api.go b/server/apiv1/api.go index 8f3fee5..905bd57 100644 --- a/server/apiv1/api.go +++ b/server/apiv1/api.go @@ -727,7 +727,7 @@ func ReleaseMessage(w http.ResponseWriter, r *http.Request) { func HTMLCheck(w http.ResponseWriter, r *http.Request) { // swagger:route GET /api/v1/message/{ID}/html-check Other HTMLCheck // - // # HTML check (beta) + // # HTML check // // Returns the summary of the message HTML checker. // @@ -780,7 +780,7 @@ func HTMLCheck(w http.ResponseWriter, r *http.Request) { func LinkCheck(w http.ResponseWriter, r *http.Request) { // swagger:route GET /api/v1/message/{ID}/link-check Other LinkCheck // - // # Link check (beta) + // # Link check // // Returns the summary of the message Link checker. // @@ -831,12 +831,9 @@ func LinkCheck(w http.ResponseWriter, r *http.Request) { func SpamAssassinCheck(w http.ResponseWriter, r *http.Request) { // swagger:route GET /api/v1/message/{ID}/sa-check Other SpamAssassinCheck // - // # SpamAssassin check (beta) + // # SpamAssassin check // - // Returns the SpamAssassin (if enabled) summary of the message. - // - // NOTE: This feature is currently in beta and is documented for reference only. - // Please do not integrate with it (yet) as there may be changes. + // Returns the SpamAssassin summary (if enabled) of the message. // // Produces: // - application/json diff --git a/server/ui-src/components/message/SpamAssassin.vue b/server/ui-src/components/message/SpamAssassin.vue index 7f135ed..3c41101 100644 --- a/server/ui-src/components/message/SpamAssassin.vue +++ b/server/ui-src/components/message/SpamAssassin.vue @@ -125,7 +125,7 @@ export default { ] }, - scoreColor: function() { + scoreColor: function () { return this.graphSections[0].color }, } @@ -206,10 +206,6 @@ export default {