1
0
mirror of https://git.sr.ht/~cadence/bibliogram synced 2024-09-27 22:37:30 +00:00
bibliogram/src/lib/constants.js

15 lines
300 B
JavaScript
Raw Normal View History

2020-01-12 12:50:21 +00:00
module.exports = {
image_cache_control: `public, max-age=${7*24*60*60}`,
2020-01-14 14:38:33 +00:00
resource_cache_time: 30*60*1000,
2020-01-12 12:50:21 +00:00
external: {
timeline_query_hash: "e769aa130647d2354c40ea6a439bfc08",
2020-01-14 14:38:33 +00:00
timeline_fetch_first: 12,
username_regex: "[\\w.]+"
2020-01-12 12:50:21 +00:00
},
symbols: {
NO_MORE_PAGES: Symbol("NO_MORE_PAGES")
}
}