aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2024-09-25 17:16:11 +0200
committerGitHub <noreply@github.com>2024-09-25 17:16:11 +0200
commitc98206bd7a89211314b687f49a94db815f96d1ca (patch)
treee019c12ed8138698c3e7859552b0139352c47f01
parent6befdd6dd7cd20fe7f7036e4665bcfbb783d6803 (diff)
parent1f188c30485fe9517bcc3350be86baa836d5526b (diff)
downloadnextcloud-server-c98206bd7a89211314b687f49a94db815f96d1ca.tar.gz
nextcloud-server-c98206bd7a89211314b687f49a94db815f96d1ca.zip
Merge pull request #48356 from nextcloud/bugfix/noid/document-icon-requirements
fix(icons): Document icon requirements for notifications and activities
-rw-r--r--lib/public/Activity/IEvent.php8
-rw-r--r--lib/public/Notification/INotification.php8
2 files changed, 16 insertions, 0 deletions
diff --git a/lib/public/Activity/IEvent.php b/lib/public/Activity/IEvent.php
index eba426c5ecf..6014b75123c 100644
--- a/lib/public/Activity/IEvent.php
+++ b/lib/public/Activity/IEvent.php
@@ -310,6 +310,10 @@ interface IEvent {
public function getLink(): string;
/**
+ * Set the absolute url for the icon (should be colored black or not have a color)
+ *
+ * It's automatically color inverted by clients when needed
+ *
* @param string $icon
* @return $this
* @throws InvalidValueException if the icon is invalid
@@ -319,6 +323,10 @@ interface IEvent {
public function setIcon(string $icon): self;
/**
+ * Get the absolute url for the icon (should be colored black or not have a color)
+ *
+ * It's automatically color inverted by clients when needed
+ *
* @return string
* @since 11.0.0
*/
diff --git a/lib/public/Notification/INotification.php b/lib/public/Notification/INotification.php
index 6083cca4f9a..7a1ee960b28 100644
--- a/lib/public/Notification/INotification.php
+++ b/lib/public/Notification/INotification.php
@@ -249,6 +249,10 @@ interface INotification {
public function getLink(): string;
/**
+ * Set the absolute url for the icon (should be colored black or not have a color)
+ *
+ * It's automatically color inverted by clients when needed
+ *
* @param string $icon
* @return $this
* @throws InvalidValueException if the icon is invalid
@@ -258,6 +262,10 @@ interface INotification {
public function setIcon(string $icon): INotification;
/**
+ * Get the absolute url for the icon (should be colored black or not have a color)
+ *
+ * It's automatically color inverted by clients when needed
+ *
* @return string
* @since 11.0.0
*/