about summary refs log tree commit diff
path: root/lib/tasks
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2018-12-18 23:31:34 +0100
committerThibG <thib@sitedethib.com>2018-12-19 20:49:58 +0100
commitc2b1e8bc433dfbb61e6e4ef9e6cb4a8b907c198f (patch)
tree36d4638238bb51a78405e71f9aa9aa616c6f059c /lib/tasks
parente8d5affe067a07c58853a14623857b68a0e65c09 (diff)
Override current_user when generating static pages
Diffstat (limited to 'lib/tasks')
-rw-r--r--lib/tasks/assets.rake16
1 files changed, 11 insertions, 5 deletions
diff --git a/lib/tasks/assets.rake b/lib/tasks/assets.rake
index b642510a1..5931aae61 100644
--- a/lib/tasks/assets.rake
+++ b/lib/tasks/assets.rake
@@ -1,13 +1,19 @@
 # frozen_string_literal: true
 
-def render_static_page(action, dest:, **opts)
-  html = ApplicationController.render(action, opts)
-  File.write(dest, html)
-end
-
 namespace :assets do
   desc 'Generate static pages'
   task generate_static_pages: :environment do
+    class StaticApplicationController < ApplicationController
+      def current_user
+        nil
+      end
+    end
+
+    def render_static_page(action, dest:, **opts)
+      html = StaticApplicationController.render(action, opts)
+      File.write(dest, html)
+    end
+
     render_static_page 'errors/500', layout: 'error', dest: Rails.root.join('public', 'assets', '500.html')
   end
 end