diff options
author | Christopher Ng <chrng8@gmail.com> | 2023-03-29 13:36:45 -0700 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2023-03-29 13:36:45 -0700 |
commit | 4f8e916585889b99247d967d51325ac0c840ec59 (patch) | |
tree | 67e9b24aa50f033cf88d52f53b648bb2bd30aab4 /lib/public/App | |
parent | fc371facd202d7ede86f1adb37fc78a8c478deff (diff) | |
download | nextcloud-server-4f8e916585889b99247d967d51325ac0c840ec59.tar.gz nextcloud-server-4f8e916585889b99247d967d51325ac0c840ec59.zip |
Add label for logo link
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'lib/public/App')
-rw-r--r-- | lib/public/App/IAppManager.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/public/App/IAppManager.php b/lib/public/App/IAppManager.php index faaf871a74c..6eeeed2da69 100644 --- a/lib/public/App/IAppManager.php +++ b/lib/public/App/IAppManager.php @@ -242,4 +242,13 @@ interface IAppManager { * @since 17.0.0 */ public function getAppRestriction(string $appId): array; + + /** + * Returns the id of the user's default app + * + * If `user` is not passed, the currently logged in user will be used + * + * @since 25.0.6 + */ + public function getDefaultAppForUser(?IUser $user = null): string; } |