mirror of
https://github.com/IT4Change/gradido.git
synced 2026-03-01 12:44:43 +00:00
6 lines
274 B
JavaScript
6 lines
274 B
JavaScript
export const GDD_PER_HOUR = 20
|
|
export const PAGE_SIZE = 25
|
|
// compound interest factor (decay reversed) for 14 days (hard coded backend link timeout)
|
|
// 365.2425 days per year (gregorian calendar year)
|
|
export const LINK_COMPOUND_INTEREST_FACTOR = Math.pow(2, 14 / 365.2425)
|