Merge pull request #12553 from owncloud/default-iosid

add missing public interface for iOS client app id
This commit is contained in:
Thomas Müller 2014-12-03 14:05:27 +01:00
commit 7291b915b8
1 changed files with 8 additions and 0 deletions

View File

@ -144,4 +144,12 @@ class Defaults {
public function getLongFooter() {
return $this->defaults->getLongFooter();
}
/**
* Returns the AppId for the App Store for the iOS Client
* @return string AppId
*/
public function getiTunesAppId() {
return $this->defaults->getiTunesAppId();
}
}