This commit is contained in:
Georg G 2016-01-05 21:50:21 +01:00
parent 78b34ef6f9
commit 39c79287e2

View file

@ -253,6 +253,9 @@ class User < ActiveRecord::Base
end
def can_export?
!self.export_processing || !self.export_created_at.nil? || (Time.now > self.export_created_at.in(1.week))
unless self.export_created_at.nil?
return (Time.now > self.export_created_at.in(1.week)) && !self.export_processing
end
!self.export_processing
end
end