-
-
Notifications
You must be signed in to change notification settings - Fork 336
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
feat: Manually capturing user feedback #805
Conversation
The SentrySDK now provides a method captureUserFeedback to associate user feedback to an event.
/** | ||
* Adds additional information about what happened to an event. | ||
*/ | ||
NS_SWIFT_NAME(UserFeedack) |
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.
m
: Because we were talking about this at the standup, should we call this now also SentryUserFeedback
in Swift? @bruno-garcia, @marandaneto and @jennmueng
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.
Given that UserFeedback is a more specific name, I have no strong feelings here.
I rather default to SentryName
when the name is super generic like Client
or Event
.
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.
LGTM!
/** | ||
* Adds additional information about what happened to an event. | ||
*/ | ||
NS_SWIFT_NAME(UserFeedack) |
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.
Given that UserFeedback is a more specific name, I have no strong feelings here.
I rather default to SentryName
when the name is super generic like Client
or Event
.
📜 Description
The SentrySDK now provides a method captureUserFeedback to associate user feedback to an event. A callback to send user feedback after a hard crash is going to be delivered in another PR.
💡 Motivation and Context
We want to bring this awesome feature to our customers.
💚 How did you test it?
Unit tests and with a simulator.
📝 Checklist
🔮 Next steps