Advertisement
Guest User

Untitled

a guest
Dec 13th, 2017
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. const login = this.restangular.one('/api/admin/login').customPOST(
  2. { username: this.username, password: this.password},
  3. '',
  4. {},
  5. {
  6. 'ContentType': 'application/json',
  7. }
  8. ).subscribe($response => {
  9. console.log($response.data.data);
  10. console.log(login);
  11. }, $error => {
  12. console.log($error);
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement