diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-12-03 14:05:27 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-12-03 14:05:27 +0100 |
commit | 7291b915b8623662af3cfbba3c8eb02e279e3b32 (patch) | |
tree | 3806de99cb5b04adadc53027aafc68ce5f7fe8a4 /lib | |
parent | 6daa588e1cd1fe099f6bd571064ea4cc56d8f036 (diff) | |
parent | 5b3dbb4ef8bc3dc8e74d14b3970f38678f3f0ace (diff) | |
download | nextcloud-server-7291b915b8623662af3cfbba3c8eb02e279e3b32.tar.gz nextcloud-server-7291b915b8623662af3cfbba3c8eb02e279e3b32.zip |
Merge pull request #12553 from owncloud/default-iosid
add missing public interface for iOS client app id
Diffstat (limited to 'lib')
-rw-r--r-- | lib/public/defaults.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/public/defaults.php b/lib/public/defaults.php index 662071a29a9..315cf547385 100644 --- a/lib/public/defaults.php +++ b/lib/public/defaults.php @@ -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(); + } } |