jiti-meet/react/features/recent-list/constants.js

15 lines
251 B
JavaScript
Raw Normal View History

2017-12-13 10:35:42 +00:00
/**
* The max size of the list.
2017-12-20 00:49:36 +00:00
*
* @type {number}
2017-12-13 10:35:42 +00:00
*/
export const LIST_SIZE = 30;
/**
2017-12-20 00:49:36 +00:00
* The name of the {@code window.localStorage} item where recent rooms are
* stored.
2017-12-13 10:35:42 +00:00
*
* @type {string}
*/
export const RECENT_URL_STORAGE = 'recentURLs';