Skip to content

Commit 3c48a14

Browse files
Fix: Correct product name to "Cloud Functions for Firebase" (#1223)
* Fix: Correct product name to "Cloud Functions for Firebase" Replaced all instances of "Firebase Functions" with the correct product name, "Cloud Functions for Firebase", in READMEs, code comments, and other documentation. * Apply suggestion from @jhuleatt * Fix: Correct product name to "Cloud Functions for Firebase" Replaced all instances of "Firebase Functions" with the correct product name, "Cloud Functions for Firebase", in READMEs, code comments, and other documentation. Reverted title changes in `Node/test-functions-jest-ts/README.md` and `Node/test-functions-jest/README.md` as requested in the PR review. * Fix: Correct product name to "Cloud Functions for Firebase" Replaced all instances of "Firebase Functions" with the correct product name, "Cloud Functions for Firebase", in READMEs, code comments, and other documentation. Reverted title changes in `Node/test-functions-jest-ts/README.md` and `Node/test-functions-jest/README.md` as requested in the PR review. Updated title in `Node/test-functions-mocha/README.md` as requested in the PR review. --------- Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com> Co-authored-by: Jeff <3759507+jhuleatt@users.noreply.github.com>
1 parent 04f162d commit 3c48a14

File tree

44 files changed

+53
-53
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+53
-53
lines changed

Node-1st-gen/assistant-say-number/functions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "assistant-say-numer-functions",
3-
"description": "Firebase Functions",
3+
"description": "Cloud Functions for Firebase",
44
"dependencies": {
55
"actions-on-google": "^2.14.0",
66
"firebase-admin": "^13.0.2",

Node-1st-gen/authorized-https-endpoint/public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<head>
1616
<meta charset="utf-8">
1717
<meta http-equiv="X-UA-Compatible" content="IE=edge">
18-
<meta name="description" content="Demonstrates how to send a welcome email using Firebase Functions.">
18+
<meta name="description" content="Demonstrates how to send a welcome email using Cloud Functions for Firebase.">
1919
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2020
<title>Welcome email demo</title>
2121

Node-1st-gen/authorized-https-endpoint/public/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Demo.prototype.signOut = function() {
6363
document.cookie = '__session=';
6464
};
6565

66-
// Does an authenticated request to a Firebase Functions endpoint using an Authorization header.
66+
// Does an authenticated request to a Cloud Functions for Firebase endpoint using an Authorization header.
6767
Demo.prototype.startFunctionsRequest = function() {
6868
firebase.auth().currentUser.getIdToken().then(function(token) {
6969
console.log('Sending request to', this.helloUserUrl, 'with ID token in Authorization header.');
@@ -80,7 +80,7 @@ Demo.prototype.startFunctionsRequest = function() {
8080
}.bind(this));
8181
};
8282

83-
// Does an authenticated request to a Firebase Functions endpoint using a __session cookie.
83+
// Does an authenticated request to a Cloud Functions for Firebase endpoint using a __session cookie.
8484
Demo.prototype.startFunctionsCookieRequest = function() {
8585
// Set the __session cookie.
8686
firebase.auth().currentUser.getIdToken(true).then(function(token) {

Node-1st-gen/bigquery-import/functions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bigquery-import-functions",
3-
"description": "Import data to BigQuery Firebase Functions sample",
3+
"description": "Import data to BigQuery Cloud Functions for Firebase sample",
44
"dependencies": {
55
"@google-cloud/bigquery": "^4.7.0",
66
"eslint-plugin-promise": "^7.2.1",

Node-1st-gen/child-count/functions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "child-count-functions",
3-
"description": "Count Child nodes Firebase Functions sample",
3+
"description": "Count Child nodes Cloud Functions for Firebase sample",
44
"dependencies": {
55
"eslint-plugin-promise": "^7.2.1",
66
"firebase-admin": "^13.0.2",

Node-1st-gen/convert-images/functions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "convert-images-functions",
3-
"description": "Convert images to JPEG Firebase Functions sample",
3+
"description": "Convert images to JPEG Cloud Functions for Firebase sample",
44
"dependencies": {
55
"child-process-promise": "^2.2.1",
66
"eslint-plugin-promise": "^7.2.1",

Node-1st-gen/email-confirmation/functions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "email-confirmation-functions",
3-
"description": "Send Email confirmation upon sign up to a Mailing list Firebase Functions sample",
3+
"description": "Send Email confirmation upon sign up to a Mailing list Cloud Functions for Firebase sample",
44
"dependencies": {
55
"eslint-plugin-promise": "^7.2.1",
66
"firebase-admin": "^13.0.2",

Node-1st-gen/email-confirmation/public/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@
2424

2525
<!-- Add to homescreen for Chrome on Android -->
2626
<meta name="mobile-web-app-capable" content="yes">
27-
<meta name="application-name" content="Firebase Functions Quickstart">
27+
<meta name="application-name" content="Cloud Functions for Firebase Quickstart">
2828
<meta name="theme-color" content="#303F9F">
2929

3030
<!-- Add to homescreen for Safari on iOS -->
3131
<meta name="apple-mobile-web-app-capable" content="yes">
3232
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
33-
<meta name="apple-mobile-web-app-title" content="Firebase Functions Quickstart">
33+
<meta name="apple-mobile-web-app-title" content="Cloud Functions for Firebase Quickstart">
3434
<meta name="apple-mobile-web-app-status-bar-style" content="#303F9F">
3535

3636
<!-- Tile icon for Win8 -->

Node-1st-gen/exif-images/functions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "exif-images-functions",
3-
"description": "Extract EXIF metadata from images Firebase Functions sample",
3+
"description": "Extract EXIF metadata from images Cloud Functions for Firebase sample",
44
"dependencies": {
55
"@google-cloud/storage": "^4.7.2",
66
"child-process-promise": "^2.2.1",

Node-1st-gen/fcm-notifications/functions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fcm-notifications-functions",
3-
"description": "Send FCM notifications Firebase Functions sample",
3+
"description": "Send FCM notifications Cloud Functions for Firebase sample",
44
"dependencies": {
55
"eslint-plugin-promise": "^7.2.1",
66
"firebase-admin": "^13.0.2",

0 commit comments

Comments
 (0)