ee9f63a161
bugfix wip flow fix cleaning clean
19 lines
633 B
JavaScript
19 lines
633 B
JavaScript
// ui
|
|
export const ICON_SIZE = 12;
|
|
|
|
// see which of these are used
|
|
export const COLLECTION_ID = 'lid';
|
|
export const COLLECTION_INDEX = 'linx';
|
|
|
|
export const COL_TYPE_PLAYLIST = 'playlist';
|
|
export const COL_TYPE_CHANNELS = 'channelList';
|
|
|
|
export const WATCH_LATER_ID = 'watchlater';
|
|
export const FAVORITES_ID = 'favorites';
|
|
export const FAVORITE_CHANNELS_ID = 'favoriteChannels';
|
|
export const BUILTIN_LISTS = [WATCH_LATER_ID, FAVORITES_ID, FAVORITE_CHANNELS_ID];
|
|
|
|
export const COL_KEY_EDITED = 'edited';
|
|
export const COL_KEY_UNPUBLISHED = 'unpublished';
|
|
export const COL_KEY_PENDING = 'pending';
|
|
export const COL_KEY_SAVED = 'saved';
|