about summary refs log tree commit diff
path: root/app/controllers/concerns/export_controller_concern.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/concerns/export_controller_concern.rb')
-rw-r--r--app/controllers/concerns/export_controller_concern.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/app/controllers/concerns/export_controller_concern.rb b/app/controllers/concerns/export_controller_concern.rb
index e20b71a30..bfe990c82 100644
--- a/app/controllers/concerns/export_controller_concern.rb
+++ b/app/controllers/concerns/export_controller_concern.rb
@@ -5,7 +5,10 @@ module ExportControllerConcern
 
   included do
     before_action :authenticate_user!
+    before_action :require_not_suspended!
     before_action :load_export
+
+    skip_before_action :require_functional!
   end
 
   private
@@ -27,4 +30,8 @@ module ExportControllerConcern
   def export_filename
     "#{controller_name}.csv"
   end
+
+  def require_not_suspended!
+    forbidden if current_account.suspended?
+  end
 end