10 lines
305 B
JavaScript
10 lines
305 B
JavaScript
const authScope = [
|
|
'https://www.googleapis.com/auth/datastore',
|
|
'https://www.googleapis.com/auth/firebase.database',
|
|
'https://www.googleapis.com/auth/datastore',
|
|
'https://www.googleapis.com/auth/userinfo.email',
|
|
'https://www.googleapis.com/auth/userinfo.profile',
|
|
];
|
|
|
|
export default authScope;
|