This commit is contained in:
Georg G 2016-01-05 21:48:30 +01:00
parent 2ad1c4294d
commit 78b34ef6f9
1 changed files with 1 additions and 5 deletions

View File

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