Add OAuth Login facebook,google,github

This commit is contained in:
Qolzam
2017-11-18 19:04:31 +07:00
parent f64b7bb24d
commit 92379b615c
23 changed files with 513 additions and 264 deletions

View File

@@ -0,0 +1,18 @@
/**
* User provide data
*
* @export
* @class UserProvider
*/
export class UserProvider {
constructor (
public userId: string,
public email: string,
public fullName: string,
public avatar: string,
public providerId: string,
public provider: string,
public accessToken: string
) {}
}