Guest User

Untitled

a guest
Nov 9th, 2018
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. createUser(username: "Foo", email: "Foo@gmail.com", password: "Bar")
  2. .then { user in
  3. return self.login(user)
  4. }
  5. .then { _ in
  6. return self.goToHomeScreen()
  7. }
  8. .then { _ in
  9. print("All done!")
  10. }
  11. .catch { error in
  12. print(error)
  13. }
Add Comment
Please, Sign In to add comment