Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ def gitEnv = [
'GIT_AUTHOR_EMAIL=slnode@ca.ibm.com',
]

env.CHANGE_BRANCH = env.CHANGE_BRANCH ?: env.BRANCH_NAME

node('linux && git') {
stage('checkout') {
checkout scm
Expand All @@ -32,7 +34,7 @@ node('linux && git') {
sh 'git commit -m "Update READMEs from other repos"'
}
sshagent(credentials: ['loopback-io-deploy']) {
sh 'git push origin HEAD:$BRANCH_NAME'
sh 'git push origin HEAD:$CHANGE_BRANCH'
}
} else {
echo "No updates to commit"
Expand Down
2 changes: 1 addition & 1 deletion pages/en/lb3/readmes/loopback-connector-cloudant.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ Property        | Type | Description
----------| -----| --------
database | String | Database name
modelIndex | String | Specify the model name to document mapping, defaults to `loopback__model__name`.
modelSelector | JSON | Use the Cloudant Query selector syntax to associate models to existing data. NOTE: modelSelector and modelIndex are mutually exclusive; see [Selector syntax](https://docs.cloudant.com/cloudant_query.html#selector-syntax).
modelSelector | JSON | Use the Cloudant Query selector syntax to associate models to existing data. NOTE: modelSelector and modelIndex are mutually exclusive; see [Selector syntax](https://console.bluemix.net/docs/services/Cloudant/api/cloudant_query.html#selector-syntax).

### _rev Property

Expand Down
2 changes: 2 additions & 0 deletions pages/en/lb4/FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ summary: LoopBack 4 is a completely new framework, sometimes referred to as Loop
- Suitable for small and large teams
- Minimally opinionated, enforce your team's opinions instead

See [Crafting LoopBack 4](Crafting-LoopBack-4.html) for more details.

### What’s the timeline for LoopBack 4?

See [Upcoming releases](https://github.com/strongloop/loopback-next/wiki/Upcoming-Releases).
Expand Down