diff options
author | Morris Jobke <hey@morrisjobke.de> | 2014-12-02 16:10:07 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-12-02 16:10:07 +0100 |
commit | 5b3dbb4ef8bc3dc8e74d14b3970f38678f3f0ace (patch) | |
tree | b4ada53a885c3c358340a5ef5041118b9701af00 /lib | |
parent | e9029f94cb6eb9b37623ea1a2faf8aac11675900 (diff) | |
download | nextcloud-server-5b3dbb4ef8bc3dc8e74d14b3970f38678f3f0ace.tar.gz nextcloud-server-5b3dbb4ef8bc3dc8e74d14b3970f38678f3f0ace.zip |
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(); + } } |