mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 09:09:36 +02:00
10 lines
189 B
CoffeeScript
10 lines
189 B
CoffeeScript
Settings = require("settings-sharelatex")
|
|
|
|
module.exports =
|
|
|
|
findLocalPlanInSettings: (planCode) ->
|
|
for plan in Settings.plans
|
|
return plan if plan.planCode == planCode
|
|
return null
|
|
|