-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v0.8.7 use of getApiServerUrl() instead of hard coded value
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,7 +68,7 @@ def about() { | |
section("About") { | ||
paragraph "MyAutomaticServiceMgr, the smartapp that connects your Automatic connected vehicle(s) to SmartThings via cloud-to-cloud integration" + | ||
" and polls your Automatic device's events on a regular interval" | ||
paragraph "Version 0.8.6\n\n" + | ||
paragraph "Version 0.8.7\n\n" + | ||
"If you like this app, please support the developer via PayPal:\n\[email protected]\n\n" + | ||
"Copyright©2015 Yves Racine" | ||
href url:"http://github.com/yracine", style:"embedded", required:false, title:"More information...", | ||
|
@@ -647,7 +647,7 @@ def getChildNamespace() { "yracine" } | |
|
||
def getChildName() { "My Automatic Device" } | ||
|
||
def getServerUrl() { return "https://graph.api.smartthings.com" } | ||
def getServerUrl() { return getApiServerUrl() } | ||
|
||
def getSmartThingsClientId() { "insert your public key here!" } | ||
|
||
|