You are viewing a single comment's thread from:

RE: Utopian Registration: Backend - TOS, Privacy & Bug Fixes

in #utopian-io8 years ago

Thank you for the contribution. It has been approved.

  • Tested with existing github account, it detected a already used one.

  • The privacy acceptance modal window is not resizeable and that means I can't accept it on an iPhone 5/SE.

  • With the SMS dsiabled, that means I could not test beyond this:
    signup-test-helo.png

  • or was it the end? by editing the html and removing the pesky disable tag, I was able to submit.
    signup-test-helo-2.png

  • unfortunately, it was a fake number in the test so I will not get the code back even if I try now with a good number. Do you have ways to get out of that loop?

You can contact us on Discord.
[utopian-moderator]

Sort:  

Hey @helo,

thank you for testing.

The privacy acceptance modal window is not resizeable and that means I can't accept it on an iPhone 5/SE.

I also just noticed that it doesn't look nice on iphone 5 resolution. So I have to fix that as well.

Tested with existing github account, it detected a already used one.

Exactly. That's how it should be.

unfortunately, it was a fake number in the test so I will not get the code back even if I try now with a good number. Do you have ways to get out of that loop?

SMS is not disabled in test-mode.

The first line checks if TESTNET is activated and if it is - a static phone-number will be used.

let code:any = process.env.REG_TESTNET === 'false' ? await phoneCode.findOne({ user_id: req.body.user_id, code: req.body.code }) : { phone_number: '49123456789', user_id: req.body.user_id }

if(!code) return res.status(400).send({ type: 'not-verified', message: 'Invalid SMS-Code' })

This also means that you can enter any code in TESTNET-mode and it will be correct.