Skip to content
This repository has been archived by the owner on Jan 14, 2019. It is now read-only.

Commit

Permalink
lelelelel
Browse files Browse the repository at this point in the history
  • Loading branch information
slmyers committed Mar 18, 2018
1 parent ae0b46e commit 96e2934
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/app/admin/core/services/auth.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export class AuthService {
constructor(private http: Http){}

login(user: string, password: string): Observable<boolean> {
alert(user + "\n" + password);
const auth = btoa(user + ":" + password);
const headers = new Headers();
headers.append("Authorization", "Basic " + auth);
Expand Down

0 comments on commit 96e2934

Please sign in to comment.