Skip to content
Snippets Groups Projects
Commit 76eb4753 authored by Mike Cifani's avatar Mike Cifani
Browse files

Merge branch 'develop' of github.com:steemit/steemit.com into develop

parents f99acfa2 829ef678
No related branches found
No related tags found
No related merge requests found
...@@ -52,6 +52,12 @@ export function contentStats(content) { ...@@ -52,6 +52,12 @@ export function contentStats(content) {
let hasFlag = false let hasFlag = false
content.get('active_votes').forEach(v => { content.get('active_votes').forEach(v => {
const rshares = String(v.get('rshares')) const rshares = String(v.get('rshares'))
const voterRepLog10 = repLog10(v.get('reputation'))
if(voterRepLog10) {
// Don't allow low rep users to gray out everyone's posts.
if(voterRepLog10 < 25)
return
}
const neg = rshares.substring(0, 1) === '-' const neg = rshares.substring(0, 1) === '-'
if(neg) hasFlag = true if(neg) hasFlag = true
// Prevent tiny downvotes (less than 9 digits) from hiding content // Prevent tiny downvotes (less than 9 digits) from hiding content
......
import models from '../db/models';
import sendEmail from '../server/sendEmail';
models.User.findAll({
attributes: ['id', 'email'],
where: {waiting_list: true, email: {$ne: null}},
order: 'id DESC',
limit: 2
}).then(users => {
for(let u of users) {
const email = u.email.toLowerCase();
const m = email.match(/\.(\w+)$/);
if (!m || m[1] === 'ru') continue;
const confirmation_code = Math.random().toString(36).slice(2);
const i_attrs = {
provider: 'email',
user_id: u.id,
email,
verified: false,
confirmation_code
};
models.Identity.create(i_attrs).then(() => {
sendEmail('waiting_list_invite', email, {confirmation_code});
});
}
});
...@@ -54,7 +54,7 @@ function *confirmEmailHandler() { ...@@ -54,7 +54,7 @@ function *confirmEmailHandler() {
} }
if (!eid.verified) { if (!eid.verified) {
yield eid.update({verified: true}); yield eid.update({verified: true});
yield models.User.update({email: eid.email}, {where: {id: eid.user_id}}); yield models.User.update({email: eid.email, waiting_list: false}, {where: {id: eid.user_id}});
} }
this.redirect('/create_account'); this.redirect('/create_account');
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment