Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[openhabcloud] Spelling fix ("Notificaton" -> "Notification") #11404

Merged
merged 1 commit into from
Oct 18, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -40,20 +40,20 @@
public class NotificationActionTypeProvider implements ModuleTypeProvider {

private static final ModuleType SEND_NOTIFICATION_ACTION = new ActionType(SendNotificationActionHandler.TYPE_ID,
getSendNotificationConfig(false, null), "send a notificaton",
getSendNotificationConfig(false, null), "send a notification",
"Sends a notification to a specific cloud user.", null, Visibility.VISIBLE, null, null);
private static final ModuleType SEND_EXTENDED_NOTIFICATION_ACTION = new ActionType(
SendNotificationActionHandler.EXTENDED_TYPE_ID, getSendNotificationConfig(true, null),
"send a notificaton with icon and severity",
"send a notification with icon and severity",
"Sends a notification to a specific cloud user. Optionally add an icon or the severity.", null,
Visibility.VISIBLE, null, null);
private static final ModuleType SEND_BROADCAST_NOTIFICATION_ACTION = new ActionType(
SendBroadcastNotificationActionHandler.TYPE_ID, getNotificationConfig(false, null),
"broadcast a notificaton", "Sends a notification to all devices of all users.", null, Visibility.VISIBLE,
"broadcast a notification", "Sends a notification to all devices of all users.", null, Visibility.VISIBLE,
null, null);
private static final ModuleType SEND_EXRENDED_BROADCAST_NOTIFICATION_ACTION = new ActionType(
SendBroadcastNotificationActionHandler.EXTENDED_TYPE_ID, getNotificationConfig(true, null),
"broadcast a notificaton with icon and severity",
"broadcast a notification with icon and severity",
"Sends a notification to all devices of all users. Optionally add an icon or the severity.", null,
Visibility.VISIBLE, null, null);
private static final ModuleType SEND_LOG_NOTIFICATION_ACTION = new ActionType(
Expand Down