Not all types of GitHub activities are handled
Devanshi1500 opened this issue · 1 comments
Devanshi1500 commented
When activities of a user are fetched (activityCount = 20), I noticed that in case of some users, not all 20 were being displayed. This is because defineActivity
in methods of src/components/Profile.vue
does not handle all types of activities. The activity types which are currently handled are PushEvent, WatchEvent, CreateEvent, DeleteEvent, ForkEvent, PullRequestEvent, PullRequestReviewCommentEvent, IssuesEvent, IssueCommentEvent.
The activity types which are not being handled that I noticed are
- PublicEvent
- PullRequestReviewEvent
- MemberEvent
- CommitCommentEvent
- ReleaseEvent
- SponsorshipEvent
- GollumEvent
I believe these cases should be handled as well.
Devanshi1500 commented
@thelittlewonder I would like to work on this. Not sure if I'll be able to handle all activity types but I can give it a try.