mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 18:21:04 +08:00
7 lines
161 B
Ruby
7 lines
161 B
Ruby
# frozen_string_literal: true
|
|
|
|
class TeamZipExport < ZipExport
|
|
def self.exports_limit
|
|
(Rails.application.secrets.export_all_limit_24h || 3).to_i
|
|
end
|
|
end
|