Skip to content

Instantly share code, notes, and snippets.

@ssukhpinder
Created July 25, 2020 12:42
Show Gist options
  • Save ssukhpinder/06c7646a97fe84e363d776603b2c196c to your computer and use it in GitHub Desktop.
Save ssukhpinder/06c7646a97fe84e363d776603b2c196c to your computer and use it in GitHub Desktop.
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class AuthGuardService {
constructor() {
}
getToken() {
//Write authentication service/logic here.
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment