-
Notifications
You must be signed in to change notification settings - Fork 17
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
Drush command for resending messages #44
base: 7.x-2.x
Are you sure you want to change the base?
Conversation
drush/message_notify.drush.inc
Outdated
'callback' => 'message_notify_resend', | ||
'description' => 'Resend selected messages by minimal and maximal message IDs.', | ||
'arguments' => array( | ||
'min_mid' => 'Message ID to start from.', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use dt
for text(it's the t()
funciton in Drush).
drush/message_notify.drush.inc
Outdated
'max_mid' => 'Maximal message ID to resend.', | ||
), | ||
'options' => array( | ||
'notifier' => "The notifier to use. 'email' by default.", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Be consistent - use '
instead of "
@RoySegall - Thanks. |
I think that as well, but I know that @amitaibu want to use docker. |
No need for docker here, but it would be nice to get Travis fixed. |
I'll give it a try. |
Allows to resend messages by a range of message IDs.