Skip to content

Registration

Ruben De Smet requested to merge registration into master
  • Registration procedure
    • UI says "signal will call you", but we're actually doing text verification currently.
    • Invalid phone numbers are not fed back to the UI, but just crash the Arbiter.
let number = phonenumber::parse(None, number).unwrap();
let e164 = number.format().mode(phonenumber::Mode::E164).to_string();
log::info!("E164: {}", e164);
-        SignalServers::Production.into()
+        SignalServers::Staging.into()
  • Upon registration, I got
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: ServiceError(Unauthorized)', src/worker/client.rs:695:76

Fixes #32 (closed)

Edited by Ruben De Smet

Merge request reports