From d1a184cb0c73c0bf2020a517cd6a61dbe0687b2e Mon Sep 17 00:00:00 2001 From: Cody Cutrer Date: Tue, 17 Sep 2024 14:09:33 -0600 Subject: [PATCH] update notification doc links to point to current openHAB (#339) they were released with 4.2 Signed-off-by: Cody Cutrer --- lib/openhab/core/actions/notification.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/openhab/core/actions/notification.rb b/lib/openhab/core/actions/notification.rb index 0c2e2a4e3..b33e3fad2 100644 --- a/lib/openhab/core/actions/notification.rb +++ b/lib/openhab/core/actions/notification.rb @@ -4,14 +4,14 @@ module OpenHAB module Core module Actions # - # Provides methods for {https://next.openhab.org/addons/integrations/openhabcloud/#cloud-notification-actions + # Provides methods for {https://www.openhab.org/addons/integrations/openhabcloud/#cloud-notification-actions # openHAB Cloud Notification Actions}. # class Notification class << self # # Send a notification using - # {https://next.openhab.org/addons/integrations/openhabcloud/#cloud-notification-actions + # {https://www.openhab.org/addons/integrations/openhabcloud/#cloud-notification-actions # openHAB Cloud Notification Action}. # # @param msg [String] The message to send. @@ -27,7 +27,7 @@ class << self # Subsequent notifications using the same reference ID will # update/overwrite the existing notification with the same ID. # @param on_click [String, nil] The action to be performed when the user clicks on the notification. - # Specified using the {https://next.openhab.org/addons/integrations/openhabcloud/#action-syntax + # Specified using the {https://www.openhab.org/addons/integrations/openhabcloud/#action-syntax # action syntax}. # @param attachment [String, Item, nil] The URL of the media attachment to be displayed with the notification. # This can either be a fully qualified URL, prefixed with @@ -36,7 +36,7 @@ class << self # or an image item. # @param buttons [Array, Hash, nil] Buttons to include in the notification. # - In array form, each element is specified as `Title=$action`, where `$action` follows the - # {https://next.openhab.org/addons/integrations/openhabcloud/#action-syntax action syntax}. + # {https://www.openhab.org/addons/integrations/openhabcloud/#action-syntax action syntax}. # - In hash form, the keys are the button titles and the values are the actions. # # The maximum number of buttons is 3.