Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/integration/salesforce.md')
-rw-r--r--doc/integration/salesforce.md8
1 files changed, 5 insertions, 3 deletions
diff --git a/doc/integration/salesforce.md b/doc/integration/salesforce.md
index 68daced3521..ebd936424d3 100644
--- a/doc/integration/salesforce.md
+++ b/doc/integration/salesforce.md
@@ -57,9 +57,10 @@ To get the credentials (a pair of Client ID and Client Secret), you must [create
```ruby
gitlab_rails['omniauth_providers'] = [
{
- "name" => "salesforce",
- "app_id" => "SALESFORCE_CLIENT_ID",
- "app_secret" => "SALESFORCE_CLIENT_SECRET"
+ name: "salesforce",
+ # label: "Provider name", # optional label for login button, defaults to "Salesforce"
+ app_id: "SALESFORCE_CLIENT_ID",
+ app_secret: "SALESFORCE_CLIENT_SECRET"
}
]
```
@@ -68,6 +69,7 @@ To get the credentials (a pair of Client ID and Client Secret), you must [create
```yaml
- { name: 'salesforce',
+ # label: 'Provider name', # optional label for login button, defaults to "Salesforce"
app_id: 'SALESFORCE_CLIENT_ID',
app_secret: 'SALESFORCE_CLIENT_SECRET'
}