-
Notifications
You must be signed in to change notification settings - Fork 21
[CHAT-530] Feature/snooze message reminder #152
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
Conversation
* `create_reminder`: Create a reminder for a message * `update_reminder`: Update an existing reminder * `delete_reminder`: Delete a reminder * `query_reminders`: Query reminders with filtering options
* Add Docker-based development commands to CONTRIBUTING.md * Create Makefile with development, testing, and Docker-related targets * Include support for customizable Ruby version and Stream Chat URL * Add convenience commands for linting, testing, and type checking
| @channel_id = SecureRandom.uuid | ||
| @channel = @client.channel('messaging', channel_id: @channel_id) | ||
| @channel.create('john') | ||
| @channel.update_partial({config_overrides: {user_message_reminders: true}}) |
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.
📝 [rubocop] <Layout/SpaceInsideHashLiteralBraces> reported by reviewdog 🐶
Space inside { missing.
| @channel.update_partial({config_overrides: {user_message_reminders: true}}) | |
| @channel.update_partial({ config_overrides: {user_message_reminders: true}}) |
| @channel_id = SecureRandom.uuid | ||
| @channel = @client.channel('messaging', channel_id: @channel_id) | ||
| @channel.create('john') | ||
| @channel.update_partial({config_overrides: {user_message_reminders: true}}) |
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.
📝 [rubocop] <Layout/SpaceInsideHashLiteralBraces> reported by reviewdog 🐶
Space inside { missing.
| @channel.update_partial({config_overrides: {user_message_reminders: true}}) | |
| @channel.update_partial({config_overrides: { user_message_reminders: true}}) |
| @channel_id = SecureRandom.uuid | ||
| @channel = @client.channel('messaging', channel_id: @channel_id) | ||
| @channel.create('john') | ||
| @channel.update_partial({config_overrides: {user_message_reminders: true}}) |
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.
📝 [rubocop] <Layout/SpaceInsideHashLiteralBraces> reported by reviewdog 🐶
Space inside } missing.
| @channel.update_partial({config_overrides: {user_message_reminders: true}}) | |
| @channel.update_partial({config_overrides: {user_message_reminders: true }}) |
| @channel_id = SecureRandom.uuid | ||
| @channel = @client.channel('messaging', channel_id: @channel_id) | ||
| @channel.create('john') | ||
| @channel.update_partial({config_overrides: {user_message_reminders: true}}) |
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.
📝 [rubocop] <Layout/SpaceInsideHashLiteralBraces> reported by reviewdog 🐶
Space inside } missing.
| @channel.update_partial({config_overrides: {user_message_reminders: true}}) | |
| @channel.update_partial({config_overrides: {user_message_reminders: true} }) |
Submit a pull request
CLA
Description of the pull request