mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
9 lines
214 B
Ruby
9 lines
214 B
Ruby
Rails.application.configure do
|
|
# Maximum number of repositories per team allowed
|
|
config.x.repositories_limit =
|
|
if ENV['REPOSITORIES_LIMIT']
|
|
ENV['REPOSITORIES_LIMIT'].to_i
|
|
else
|
|
6
|
|
end
|
|
end
|