remove signup-cta and tweak console log wording to remove anon user references
This commit is contained in:
parent
0ffc960523
commit
d6ac469e1a
@ -35,8 +35,7 @@ module.exports = function(state, emit) {
|
|||||||
state.archive.dlimit = selected;
|
state.archive.dlimit = selected;
|
||||||
emit('render');
|
emit('render');
|
||||||
if (selected > parseInt(state.user.maxDownloads || '0')) {
|
if (selected > parseInt(state.user.maxDownloads || '0')) {
|
||||||
console.log('Chosen max download count is larger than the allowed limit for anonymous users', selected)
|
console.log('Chosen max download count is larger than the allowed limit', selected)
|
||||||
emit('signup-cta', 'count');
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
'expire-after-dl-count-select'
|
'expire-after-dl-count-select'
|
||||||
@ -62,8 +61,7 @@ module.exports = function(state, emit) {
|
|||||||
state.archive.timeLimit = selected;
|
state.archive.timeLimit = selected;
|
||||||
emit('render');
|
emit('render');
|
||||||
if (selected > parseInt(state.user.maxExpireSeconds || '0')) {
|
if (selected > parseInt(state.user.maxExpireSeconds || '0')) {
|
||||||
console.log('Chosen download expiration is larger than the allowed limit for anonymous users', selected)
|
console.log('Chosen download expiration is larger than the allowed limit', selected)
|
||||||
emit('signup-cta', 'time');
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
'expire-after-time-select'
|
'expire-after-time-select'
|
||||||
|
Loading…
Reference in New Issue
Block a user