7730ee1e3f
paginate claim list improve handling of pending publishes add abandon to publishes list previews use bodyCard fix publish edit notification
25 lines
686 B
JavaScript
25 lines
686 B
JavaScript
export const MINIMUM_PUBLISH_BID = 0.00001;
|
|
|
|
export const CHANNEL_ANONYMOUS = 'anonymous';
|
|
export const CHANNEL_NEW = 'new';
|
|
export const PAGE_SIZE = 20;
|
|
export const PUBLISHES_PAGE_SIZE = 10;
|
|
export const PAGE_PARAM = 'page';
|
|
export const PAGE_SIZE_PARAM = 'page_size';
|
|
|
|
export const INVALID_NAME_ERROR =
|
|
__('LBRY names cannot contain spaces or reserved symbols') + ' ' + '($#@;/"<>%{}|^~[]`)';
|
|
|
|
export const FORCE_CONTENT_TYPE_PLAYER = [
|
|
'video/quicktime',
|
|
'application/x-ext-mkv',
|
|
'video/x-matroska',
|
|
'application/octet-stream',
|
|
'video/x-ms-wmv',
|
|
'video/x-msvideo',
|
|
'video/mpeg',
|
|
'video/m4v',
|
|
'audio/ogg',
|
|
'application/x-ext-ogg',
|
|
'application/x-ext-m4a',
|
|
];
|