From 4283f15493a65ee4a0f2f98ae627c109c027ff4d Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Thu, 8 Aug 2019 10:23:05 -0500 Subject: [PATCH] admin transparancy log - support markdown --- app/workers/log_worker.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/workers/log_worker.rb b/app/workers/log_worker.rb index d3d22c88e..f6a837153 100644 --- a/app/workers/log_worker.rb +++ b/app/workers/log_worker.rb @@ -5,7 +5,7 @@ class LogWorker sidekiq_options unique: :until_executed - def perform(log_text, scope = nil) + def perform(log_text, scope: nil, markdown: false) logger_id = ENV['LOG_USER'].to_i return true if logger_id == 0 @@ -22,7 +22,7 @@ class LogWorker tags: [tag], visibility: :unlisted, local_only: true, - content_type: 'text/plain', + content_type: markdown ? 'text/markdown' : 'text/plain', language: 'en', nocrawl: true, nomentions: true,