type
stringclasses 14
values | public
bool 1
class | payload
stringlengths 2
363k
| repo
dict | actor
dict | org
dict | created_at
timestamp[us] | id
stringlengths 10
10
| other
stringlengths 31
69
|
---|---|---|---|---|---|---|---|---|
PullRequestReviewCommentEvent | true | {"action":"created","comment":{"url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/pulls/comments/241080387","pull_request_review_id":184154073,"id":241080387,"node_id":"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDI0MTA4MDM4Nw==","diff_hunk":"@@ -1,61 +1,84 @@\n <?xml version=\"1.0\" encoding=\"utf-8\"?>\n-<android.support.constraint.ConstraintLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n+<RelativeLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n xmlns:app=\"http://schemas.android.com/apk/res-auto\"\n xmlns:tools=\"http://schemas.android.com/tools\"\n android:layout_width=\"match_parent\"\n android:layout_height=\"match_parent\"\n tools:context=\"activities.LoginActivity\">\n \n- <Button\n- android:id=\"@+id/no-login-button\"\n- android:layout_width=\"wrap_content\"\n- android:layout_height=\"wrap_content\"\n- android:onClick=\"continueWithoutLogin\"\n- android:text=\"Continue without login\"\n- app:layout_constraintBottom_toBottomOf=\"parent\"\n- app:layout_constraintEnd_toEndOf=\"parent\"\n- app:layout_constraintStart_toStartOf=\"parent\"\n- app:layout_constraintTop_toTopOf=\"parent\"\n- app:layout_constraintVertical_bias=\"0.859\" />\n+ <android.support.constraint.ConstraintLayout\n+ android:id=\"@+id/login_activity_loading_panel\"\n+ android:layout_width=\"match_parent\"\n+ android:layout_height=\"match_parent\"\n+ android:gravity=\"center\"\n+ android:visibility=\"gone\">\n \n- <Button\n- android:id=\"@+id/login-button\"\n- android:layout_width=\"wrap_content\"\n- android:layout_height=\"wrap_content\"\n- android:onClick=\"login\"\n- android:text=\"Login\"\n- app:layout_constraintBottom_toBottomOf=\"parent\"\n- app:layout_constraintEnd_toEndOf=\"parent\"\n- app:layout_constraintStart_toStartOf=\"parent\"\n- app:layout_constraintTop_toTopOf=\"parent\"\n- app:layout_constraintVertical_bias=\"0.674\" />\n+ <ProgressBar\n+ android:layout_width=\"wrap_content\"\n+ android:layout_height=\"wrap_content\"\n+ android:indeterminate=\"true\"\n+ app:layout_constraintBottom_toBottomOf=\"parent\"\n+ app:layout_constraintEnd_toEndOf=\"parent\"\n+ app:layout_constraintHorizontal_bias=\"0.5\"\n+ app:layout_constraintStart_toStartOf=\"parent\"\n+ app:layout_constraintTop_toTopOf=\"parent\" />\n+ </android.support.constraint.ConstraintLayout>\n \n- <EditText\n- android:id=\"@+id/password\"\n- android:layout_width=\"wrap_content\"\n- android:layout_height=\"wrap_content\"\n- android:ems=\"10\"\n- android:inputType=\"textPassword\"\n- app:layout_constraintBottom_toBottomOf=\"parent\"\n- app:layout_constraintEnd_toEndOf=\"parent\"\n- app:layout_constraintHorizontal_bias=\"0.502\"\n- app:layout_constraintStart_toStartOf=\"parent\"\n- app:layout_constraintTop_toTopOf=\"parent\"\n- app:layout_constraintVertical_bias=\"0.433\"\n- tools:text=\"Password\" />\n+ <android.support.constraint.ConstraintLayout\n+ android:id=\"@+id/login_activity_input_panel\"\n+ android:layout_width=\"384dp\"\n+ android:layout_height=\"567dp\"\n+ android:gravity=\"center\"\n+ android:visibility=\"visible\">\n \n- <EditText\n- android:id=\"@+id/username\"\n- android:layout_width=\"wrap_content\"\n- android:layout_height=\"60dp\"\n- android:ems=\"10\"\n- android:inputType=\"textPersonName\"\n- app:layout_constraintBottom_toBottomOf=\"parent\"\n- app:layout_constraintEnd_toEndOf=\"parent\"\n- app:layout_constraintHorizontal_bias=\"0.502\"\n- app:layout_constraintStart_toStartOf=\"parent\"\n- app:layout_constraintTop_toTopOf=\"parent\"\n- app:layout_constraintVertical_bias=\"0.249\"\n- tools:text=\"Username\" />\n+ <EditText\n+ android:id=\"@+id/username\"\n+ android:layout_width=\"wrap_content\"\n+ android:layout_height=\"60dp\"\n+ android:ems=\"10\"\n+ android:inputType=\"text|textEmailAddress\"\n+ app:layout_constraintBottom_toTopOf=\"@+id/password\"\n+ app:layout_constraintEnd_toEndOf=\"parent\"\n+ app:layout_constraintHorizontal_bias=\"0.5\"\n+ app:layout_constraintStart_toStartOf=\"parent\"\n+ app:layout_constraintTop_toTopOf=\"parent\"\n+ tools:text=\"Username\" />\n \n-</android.support.constraint.ConstraintLayout>\n\\ No newline at end of file\n+ <EditText\n+ android:id=\"@+id/password\"\n+ android:layout_width=\"wrap_content\"\n+ android:layout_height=\"wrap_content\"\n+ android:ems=\"10\"\n+ android:inputType=\"textPassword\"\n+ app:layout_constraintBottom_toTopOf=\"@+id/login-button\"\n+ app:layout_constraintEnd_toEndOf=\"parent\"\n+ app:layout_constraintHorizontal_bias=\"0.5\"\n+ app:layout_constraintStart_toStartOf=\"parent\"\n+ app:layout_constraintTop_toBottomOf=\"@+id/username\"\n+ tools:text=\"Password\" />\n+\n+ <Button\n+ android:id=\"@+id/login-button\"\n+ android:layout_width=\"wrap_content\"\n+ android:layout_height=\"wrap_content\"\n+ android:onClick=\"login\"\n+ android:text=\"Login\"\n+ app:layout_constraintBottom_toTopOf=\"@+id/no-login-button\"\n+ app:layout_constraintEnd_toEndOf=\"parent\"\n+ app:layout_constraintHorizontal_bias=\"0.5\"\n+ app:layout_constraintStart_toStartOf=\"parent\"\n+ app:layout_constraintTop_toBottomOf=\"@+id/password\" />\n+\n+ <Button\n+ android:id=\"@+id/no-login-button\"\n+ android:layout_width=\"wrap_content\"\n+ android:layout_height=\"wrap_content\"\n+ android:onClick=\"continueWithoutLogin\"\n+ android:text=\"Continue without login\"\n+ app:layout_constraintBottom_toBottomOf=\"parent\"\n+ app:layout_constraintEnd_toEndOf=\"parent\"\n+ app:layout_constraintHorizontal_bias=\"0.5\"\n+ app:layout_constraintStart_toStartOf=\"parent\"\n+ app:layout_constraintTop_toBottomOf=\"@+id/login-button\" />\n+ </android.support.constraint.ConstraintLayout>\n+</RelativeLayout>","path":"app/src/main/res/layout/activity_login.xml","position":135,"original_position":135,"commit_id":"4f9f0ac7fca9b4ee62a5aeae3b0f5eed6201dda3","original_commit_id":"4f9f0ac7fca9b4ee62a5aeae3b0f5eed6201dda3","user":{"login":"DonnA98","id":36692128,"node_id":"MDQ6VXNlcjM2NjkyMTI4","avatar_url":"https://avatars0.githubusercontent.com/u/36692128?v=4","gravatar_id":"","url":"https://api.github.com/users/DonnA98","html_url":"https://github.com/DonnA98","followers_url":"https://api.github.com/users/DonnA98/followers","following_url":"https://api.github.com/users/DonnA98/following{/other_user}","gists_url":"https://api.github.com/users/DonnA98/gists{/gist_id}","starred_url":"https://api.github.com/users/DonnA98/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DonnA98/subscriptions","organizations_url":"https://api.github.com/users/DonnA98/orgs","repos_url":"https://api.github.com/users/DonnA98/repos","events_url":"https://api.github.com/users/DonnA98/events{/privacy}","received_events_url":"https://api.github.com/users/DonnA98/received_events","type":"User","site_admin":false},"body":"Please add a newline.","created_at":"2018-12-12T16:14:02Z","updated_at":"2018-12-12T16:20:24Z","html_url":"https://github.com/DivisionBy-Zero/erpa-sweng/pull/166#discussion_r241080387","pull_request_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/pulls/166","author_association":"COLLABORATOR","_links":{"self":{"href":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/pulls/comments/241080387"},"html":{"href":"https://github.com/DivisionBy-Zero/erpa-sweng/pull/166#discussion_r241080387"},"pull_request":{"href":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/pulls/166"}}},"pull_request":{"url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/pulls/166","id":238014597,"node_id":"MDExOlB1bGxSZXF1ZXN0MjM4MDE0NTk3","html_url":"https://github.com/DivisionBy-Zero/erpa-sweng/pull/166","diff_url":"https://github.com/DivisionBy-Zero/erpa-sweng/pull/166.diff","patch_url":"https://github.com/DivisionBy-Zero/erpa-sweng/pull/166.patch","issue_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/issues/166","number":166,"state":"open","locked":false,"title":"API Client implementation","user":{"login":"roosemberth","id":3621083,"node_id":"MDQ6VXNlcjM2MjEwODM=","avatar_url":"https://avatars0.githubusercontent.com/u/3621083?v=4","gravatar_id":"","url":"https://api.github.com/users/roosemberth","html_url":"https://github.com/roosemberth","followers_url":"https://api.github.com/users/roosemberth/followers","following_url":"https://api.github.com/users/roosemberth/following{/other_user}","gists_url":"https://api.github.com/users/roosemberth/gists{/gist_id}","starred_url":"https://api.github.com/users/roosemberth/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/roosemberth/subscriptions","organizations_url":"https://api.github.com/users/roosemberth/orgs","repos_url":"https://api.github.com/users/roosemberth/repos","events_url":"https://api.github.com/users/roosemberth/events{/privacy}","received_events_url":"https://api.github.com/users/roosemberth/received_events","type":"User","site_admin":false},"body":"","created_at":"2018-12-12T12:09:54Z","updated_at":"2018-12-12T16:20:24Z","closed_at":null,"merged_at":null,"merge_commit_sha":"fd6045e5a8549865575d145e238de52ce4ab132e","assignee":null,"assignees":[],"requested_reviewers":[{"login":"hso132","id":26089444,"node_id":"MDQ6VXNlcjI2MDg5NDQ0","avatar_url":"https://avatars2.githubusercontent.com/u/26089444?v=4","gravatar_id":"","url":"https://api.github.com/users/hso132","html_url":"https://github.com/hso132","followers_url":"https://api.github.com/users/hso132/followers","following_url":"https://api.github.com/users/hso132/following{/other_user}","gists_url":"https://api.github.com/users/hso132/gists{/gist_id}","starred_url":"https://api.github.com/users/hso132/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hso132/subscriptions","organizations_url":"https://api.github.com/users/hso132/orgs","repos_url":"https://api.github.com/users/hso132/repos","events_url":"https://api.github.com/users/hso132/events{/privacy}","received_events_url":"https://api.github.com/users/hso132/received_events","type":"User","site_admin":false}],"requested_teams":[],"labels":[],"milestone":null,"commits_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/pulls/166/commits","review_comments_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/pulls/166/comments","review_comment_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/pulls/comments{/number}","comments_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/issues/166/comments","statuses_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/statuses/4f9f0ac7fca9b4ee62a5aeae3b0f5eed6201dda3","head":{"label":"DivisionBy-Zero:feat/API_client","ref":"feat/API_client","sha":"4f9f0ac7fca9b4ee62a5aeae3b0f5eed6201dda3","user":{"login":"DivisionBy-Zero","id":43553587,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQzNTUzNTg3","avatar_url":"https://avatars0.githubusercontent.com/u/43553587?v=4","gravatar_id":"","url":"https://api.github.com/users/DivisionBy-Zero","html_url":"https://github.com/DivisionBy-Zero","followers_url":"https://api.github.com/users/DivisionBy-Zero/followers","following_url":"https://api.github.com/users/DivisionBy-Zero/following{/other_user}","gists_url":"https://api.github.com/users/DivisionBy-Zero/gists{/gist_id}","starred_url":"https://api.github.com/users/DivisionBy-Zero/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DivisionBy-Zero/subscriptions","organizations_url":"https://api.github.com/users/DivisionBy-Zero/orgs","repos_url":"https://api.github.com/users/DivisionBy-Zero/repos","events_url":"https://api.github.com/users/DivisionBy-Zero/events{/privacy}","received_events_url":"https://api.github.com/users/DivisionBy-Zero/received_events","type":"Organization","site_admin":false},"repo":{"id":150161848,"node_id":"MDEwOlJlcG9zaXRvcnkxNTAxNjE4NDg=","name":"erpa-sweng","full_name":"DivisionBy-Zero/erpa-sweng","private":false,"owner":{"login":"DivisionBy-Zero","id":43553587,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQzNTUzNTg3","avatar_url":"https://avatars0.githubusercontent.com/u/43553587?v=4","gravatar_id":"","url":"https://api.github.com/users/DivisionBy-Zero","html_url":"https://github.com/DivisionBy-Zero","followers_url":"https://api.github.com/users/DivisionBy-Zero/followers","following_url":"https://api.github.com/users/DivisionBy-Zero/following{/other_user}","gists_url":"https://api.github.com/users/DivisionBy-Zero/gists{/gist_id}","starred_url":"https://api.github.com/users/DivisionBy-Zero/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DivisionBy-Zero/subscriptions","organizations_url":"https://api.github.com/users/DivisionBy-Zero/orgs","repos_url":"https://api.github.com/users/DivisionBy-Zero/repos","events_url":"https://api.github.com/users/DivisionBy-Zero/events{/privacy}","received_events_url":"https://api.github.com/users/DivisionBy-Zero/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/DivisionBy-Zero/erpa-sweng","description":null,"fork":false,"url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng","forks_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/forks","keys_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/keys{/key_id}","collaborators_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/teams","hooks_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/hooks","issue_events_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/issues/events{/number}","events_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/events","assignees_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/assignees{/user}","branches_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/branches{/branch}","tags_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/tags","blobs_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/git/refs{/sha}","trees_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/git/trees{/sha}","statuses_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/statuses/{sha}","languages_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/languages","stargazers_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/stargazers","contributors_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/contributors","subscribers_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/subscribers","subscription_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/subscription","commits_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/commits{/sha}","git_commits_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/git/commits{/sha}","comments_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/comments{/number}","issue_comment_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/issues/comments{/number}","contents_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/contents/{+path}","compare_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/compare/{base}...{head}","merges_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/merges","archive_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/downloads","issues_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/issues{/number}","pulls_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/pulls{/number}","milestones_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/milestones{/number}","notifications_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/labels{/name}","releases_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/releases{/id}","deployments_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/deployments","created_at":"2018-09-24T20:07:06Z","updated_at":"2018-12-10T20:50:04Z","pushed_at":"2018-12-12T13:36:15Z","git_url":"git://github.com/DivisionBy-Zero/erpa-sweng.git","ssh_url":"[email protected]:DivisionBy-Zero/erpa-sweng.git","clone_url":"https://github.com/DivisionBy-Zero/erpa-sweng.git","svn_url":"https://github.com/DivisionBy-Zero/erpa-sweng","homepage":null,"size":17650,"stargazers_count":1,"watchers_count":1,"language":"Java","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":70,"license":null,"forks":0,"open_issues":70,"watchers":1,"default_branch":"master"}},"base":{"label":"DivisionBy-Zero:master","ref":"master","sha":"bcdd10724499ecb31a745a76a50043578b5c8fe3","user":{"login":"DivisionBy-Zero","id":43553587,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQzNTUzNTg3","avatar_url":"https://avatars0.githubusercontent.com/u/43553587?v=4","gravatar_id":"","url":"https://api.github.com/users/DivisionBy-Zero","html_url":"https://github.com/DivisionBy-Zero","followers_url":"https://api.github.com/users/DivisionBy-Zero/followers","following_url":"https://api.github.com/users/DivisionBy-Zero/following{/other_user}","gists_url":"https://api.github.com/users/DivisionBy-Zero/gists{/gist_id}","starred_url":"https://api.github.com/users/DivisionBy-Zero/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DivisionBy-Zero/subscriptions","organizations_url":"https://api.github.com/users/DivisionBy-Zero/orgs","repos_url":"https://api.github.com/users/DivisionBy-Zero/repos","events_url":"https://api.github.com/users/DivisionBy-Zero/events{/privacy}","received_events_url":"https://api.github.com/users/DivisionBy-Zero/received_events","type":"Organization","site_admin":false},"repo":{"id":150161848,"node_id":"MDEwOlJlcG9zaXRvcnkxNTAxNjE4NDg=","name":"erpa-sweng","full_name":"DivisionBy-Zero/erpa-sweng","private":false,"owner":{"login":"DivisionBy-Zero","id":43553587,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQzNTUzNTg3","avatar_url":"https://avatars0.githubusercontent.com/u/43553587?v=4","gravatar_id":"","url":"https://api.github.com/users/DivisionBy-Zero","html_url":"https://github.com/DivisionBy-Zero","followers_url":"https://api.github.com/users/DivisionBy-Zero/followers","following_url":"https://api.github.com/users/DivisionBy-Zero/following{/other_user}","gists_url":"https://api.github.com/users/DivisionBy-Zero/gists{/gist_id}","starred_url":"https://api.github.com/users/DivisionBy-Zero/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DivisionBy-Zero/subscriptions","organizations_url":"https://api.github.com/users/DivisionBy-Zero/orgs","repos_url":"https://api.github.com/users/DivisionBy-Zero/repos","events_url":"https://api.github.com/users/DivisionBy-Zero/events{/privacy}","received_events_url":"https://api.github.com/users/DivisionBy-Zero/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/DivisionBy-Zero/erpa-sweng","description":null,"fork":false,"url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng","forks_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/forks","keys_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/keys{/key_id}","collaborators_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/teams","hooks_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/hooks","issue_events_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/issues/events{/number}","events_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/events","assignees_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/assignees{/user}","branches_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/branches{/branch}","tags_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/tags","blobs_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/git/refs{/sha}","trees_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/git/trees{/sha}","statuses_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/statuses/{sha}","languages_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/languages","stargazers_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/stargazers","contributors_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/contributors","subscribers_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/subscribers","subscription_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/subscription","commits_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/commits{/sha}","git_commits_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/git/commits{/sha}","comments_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/comments{/number}","issue_comment_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/issues/comments{/number}","contents_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/contents/{+path}","compare_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/compare/{base}...{head}","merges_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/merges","archive_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/downloads","issues_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/issues{/number}","pulls_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/pulls{/number}","milestones_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/milestones{/number}","notifications_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/labels{/name}","releases_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/releases{/id}","deployments_url":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/deployments","created_at":"2018-09-24T20:07:06Z","updated_at":"2018-12-10T20:50:04Z","pushed_at":"2018-12-12T13:36:15Z","git_url":"git://github.com/DivisionBy-Zero/erpa-sweng.git","ssh_url":"[email protected]:DivisionBy-Zero/erpa-sweng.git","clone_url":"https://github.com/DivisionBy-Zero/erpa-sweng.git","svn_url":"https://github.com/DivisionBy-Zero/erpa-sweng","homepage":null,"size":17650,"stargazers_count":1,"watchers_count":1,"language":"Java","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":70,"license":null,"forks":0,"open_issues":70,"watchers":1,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/pulls/166"},"html":{"href":"https://github.com/DivisionBy-Zero/erpa-sweng/pull/166"},"issue":{"href":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/issues/166"},"comments":{"href":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/issues/166/comments"},"review_comments":{"href":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/pulls/166/comments"},"review_comment":{"href":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/pulls/166/commits"},"statuses":{"href":"https://api.github.com/repos/DivisionBy-Zero/erpa-sweng/statuses/4f9f0ac7fca9b4ee62a5aeae3b0f5eed6201dda3"}},"author_association":"MEMBER"}} | {
"id": 150161848,
"name": "DivisionBy-Zero/erpa-sweng",
"url": "https://api.github.com/repos/DivisionBy-Zero/erpa-sweng"
} | {
"id": 36692128,
"login": "DonnA98",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/36692128?",
"url": "https://api.github.com/users/DonnA98"
} | {
"id": 43553587,
"login": "DivisionBy-Zero",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/43553587?",
"url": "https://api.github.com/orgs/DivisionBy-Zero"
} | 2018-12-12T16:14:02 | 8742398026 | {"actor":{"display_login":"DonnA98"}} |
PullRequestReviewCommentEvent | true | {"action":"created","comment":{"url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/pulls/comments/240073042","pull_request_review_id":183017561,"id":240073042,"node_id":"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDI0MDA3MzA0Mg==","diff_hunk":"@@ -44,7 +44,7 @@ print('chars:', ''.join([idx_to_char[idx] for idx in sample]))\n print('indices:', sample)\n ```\n \n-我们将以上代码封装在`gluonbook`包里的`load_data_jay_lyrics`函数中以方便后面章节调用。调用该函数后会依次得到`corpus_indices`、`char_to_idx`、`idx_to_char`和`vocab_size`四个变量。\n+由于`set(corpus_chars)`每次运行可能会得到不同的结果,故上述输出的`indices:`也可能不同,读者以本地运行结果为准即可。我们将以上代码封装在`gluonbook`包里的`load_data_jay_lyrics`函数中以方便后面章节调用。调用该函数后会依次得到`corpus_indices`、`char_to_idx`、`idx_to_char`和`vocab_size`四个变量。","path":"chapter_recurrent-neural-networks/lang-model-dataset.md","position":5,"original_position":5,"commit_id":"6e6cacb0edc2acde478e1868737b2f233d0a587b","original_commit_id":"6e6cacb0edc2acde478e1868737b2f233d0a587b","user":{"login":"astonzhang","id":22279212,"node_id":"MDQ6VXNlcjIyMjc5MjEy","avatar_url":"https://avatars1.githubusercontent.com/u/22279212?v=4","gravatar_id":"","url":"https://api.github.com/users/astonzhang","html_url":"https://github.com/astonzhang","followers_url":"https://api.github.com/users/astonzhang/followers","following_url":"https://api.github.com/users/astonzhang/following{/other_user}","gists_url":"https://api.github.com/users/astonzhang/gists{/gist_id}","starred_url":"https://api.github.com/users/astonzhang/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/astonzhang/subscriptions","organizations_url":"https://api.github.com/users/astonzhang/orgs","repos_url":"https://api.github.com/users/astonzhang/repos","events_url":"https://api.github.com/users/astonzhang/events{/privacy}","received_events_url":"https://api.github.com/users/astonzhang/received_events","type":"User","site_admin":false},"body":"书里不少地方的结果都是随机的。所以我们一般不再单独描述这一点","created_at":"2018-12-10T02:54:32Z","updated_at":"2018-12-10T02:54:32Z","html_url":"https://github.com/diveintodeeplearning/d2l-zh/pull/442#discussion_r240073042","pull_request_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/pulls/442","author_association":"MEMBER","_links":{"self":{"href":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/pulls/comments/240073042"},"html":{"href":"https://github.com/diveintodeeplearning/d2l-zh/pull/442#discussion_r240073042"},"pull_request":{"href":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/pulls/442"}}},"pull_request":{"url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/pulls/442","id":236767098,"node_id":"MDExOlB1bGxSZXF1ZXN0MjM2NzY3MDk4","html_url":"https://github.com/diveintodeeplearning/d2l-zh/pull/442","diff_url":"https://github.com/diveintodeeplearning/d2l-zh/pull/442.diff","patch_url":"https://github.com/diveintodeeplearning/d2l-zh/pull/442.patch","issue_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/issues/442","number":442,"state":"open","locked":false,"title":"提醒读者set操作可能得到不同的结果","user":{"login":"Jonariguez","id":33273966,"node_id":"MDQ6VXNlcjMzMjczOTY2","avatar_url":"https://avatars0.githubusercontent.com/u/33273966?v=4","gravatar_id":"","url":"https://api.github.com/users/Jonariguez","html_url":"https://github.com/Jonariguez","followers_url":"https://api.github.com/users/Jonariguez/followers","following_url":"https://api.github.com/users/Jonariguez/following{/other_user}","gists_url":"https://api.github.com/users/Jonariguez/gists{/gist_id}","starred_url":"https://api.github.com/users/Jonariguez/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Jonariguez/subscriptions","organizations_url":"https://api.github.com/users/Jonariguez/orgs","repos_url":"https://api.github.com/users/Jonariguez/repos","events_url":"https://api.github.com/users/Jonariguez/events{/privacy}","received_events_url":"https://api.github.com/users/Jonariguez/received_events","type":"User","site_admin":false},"body":"","created_at":"2018-12-07T06:27:04Z","updated_at":"2018-12-10T02:54:32Z","closed_at":null,"merged_at":null,"merge_commit_sha":"f8dc45b0d3f025d6f0a75eff8d63edd2ebee77b9","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"commits_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/pulls/442/commits","review_comments_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/pulls/442/comments","review_comment_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/pulls/comments{/number}","comments_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/issues/442/comments","statuses_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/statuses/6e6cacb0edc2acde478e1868737b2f233d0a587b","head":{"label":"Jonariguez:master","ref":"master","sha":"6e6cacb0edc2acde478e1868737b2f233d0a587b","user":{"login":"Jonariguez","id":33273966,"node_id":"MDQ6VXNlcjMzMjczOTY2","avatar_url":"https://avatars0.githubusercontent.com/u/33273966?v=4","gravatar_id":"","url":"https://api.github.com/users/Jonariguez","html_url":"https://github.com/Jonariguez","followers_url":"https://api.github.com/users/Jonariguez/followers","following_url":"https://api.github.com/users/Jonariguez/following{/other_user}","gists_url":"https://api.github.com/users/Jonariguez/gists{/gist_id}","starred_url":"https://api.github.com/users/Jonariguez/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Jonariguez/subscriptions","organizations_url":"https://api.github.com/users/Jonariguez/orgs","repos_url":"https://api.github.com/users/Jonariguez/repos","events_url":"https://api.github.com/users/Jonariguez/events{/privacy}","received_events_url":"https://api.github.com/users/Jonariguez/received_events","type":"User","site_admin":false},"repo":{"id":160766376,"node_id":"MDEwOlJlcG9zaXRvcnkxNjA3NjYzNzY=","name":"d2l-zh","full_name":"Jonariguez/d2l-zh","private":false,"owner":{"login":"Jonariguez","id":33273966,"node_id":"MDQ6VXNlcjMzMjczOTY2","avatar_url":"https://avatars0.githubusercontent.com/u/33273966?v=4","gravatar_id":"","url":"https://api.github.com/users/Jonariguez","html_url":"https://github.com/Jonariguez","followers_url":"https://api.github.com/users/Jonariguez/followers","following_url":"https://api.github.com/users/Jonariguez/following{/other_user}","gists_url":"https://api.github.com/users/Jonariguez/gists{/gist_id}","starred_url":"https://api.github.com/users/Jonariguez/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Jonariguez/subscriptions","organizations_url":"https://api.github.com/users/Jonariguez/orgs","repos_url":"https://api.github.com/users/Jonariguez/repos","events_url":"https://api.github.com/users/Jonariguez/events{/privacy}","received_events_url":"https://api.github.com/users/Jonariguez/received_events","type":"User","site_admin":false},"html_url":"https://github.com/Jonariguez/d2l-zh","description":"《动手学深度学习》","fork":true,"url":"https://api.github.com/repos/Jonariguez/d2l-zh","forks_url":"https://api.github.com/repos/Jonariguez/d2l-zh/forks","keys_url":"https://api.github.com/repos/Jonariguez/d2l-zh/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Jonariguez/d2l-zh/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Jonariguez/d2l-zh/teams","hooks_url":"https://api.github.com/repos/Jonariguez/d2l-zh/hooks","issue_events_url":"https://api.github.com/repos/Jonariguez/d2l-zh/issues/events{/number}","events_url":"https://api.github.com/repos/Jonariguez/d2l-zh/events","assignees_url":"https://api.github.com/repos/Jonariguez/d2l-zh/assignees{/user}","branches_url":"https://api.github.com/repos/Jonariguez/d2l-zh/branches{/branch}","tags_url":"https://api.github.com/repos/Jonariguez/d2l-zh/tags","blobs_url":"https://api.github.com/repos/Jonariguez/d2l-zh/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Jonariguez/d2l-zh/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Jonariguez/d2l-zh/git/refs{/sha}","trees_url":"https://api.github.com/repos/Jonariguez/d2l-zh/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Jonariguez/d2l-zh/statuses/{sha}","languages_url":"https://api.github.com/repos/Jonariguez/d2l-zh/languages","stargazers_url":"https://api.github.com/repos/Jonariguez/d2l-zh/stargazers","contributors_url":"https://api.github.com/repos/Jonariguez/d2l-zh/contributors","subscribers_url":"https://api.github.com/repos/Jonariguez/d2l-zh/subscribers","subscription_url":"https://api.github.com/repos/Jonariguez/d2l-zh/subscription","commits_url":"https://api.github.com/repos/Jonariguez/d2l-zh/commits{/sha}","git_commits_url":"https://api.github.com/repos/Jonariguez/d2l-zh/git/commits{/sha}","comments_url":"https://api.github.com/repos/Jonariguez/d2l-zh/comments{/number}","issue_comment_url":"https://api.github.com/repos/Jonariguez/d2l-zh/issues/comments{/number}","contents_url":"https://api.github.com/repos/Jonariguez/d2l-zh/contents/{+path}","compare_url":"https://api.github.com/repos/Jonariguez/d2l-zh/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Jonariguez/d2l-zh/merges","archive_url":"https://api.github.com/repos/Jonariguez/d2l-zh/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Jonariguez/d2l-zh/downloads","issues_url":"https://api.github.com/repos/Jonariguez/d2l-zh/issues{/number}","pulls_url":"https://api.github.com/repos/Jonariguez/d2l-zh/pulls{/number}","milestones_url":"https://api.github.com/repos/Jonariguez/d2l-zh/milestones{/number}","notifications_url":"https://api.github.com/repos/Jonariguez/d2l-zh/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Jonariguez/d2l-zh/labels{/name}","releases_url":"https://api.github.com/repos/Jonariguez/d2l-zh/releases{/id}","deployments_url":"https://api.github.com/repos/Jonariguez/d2l-zh/deployments","created_at":"2018-12-07T03:34:47Z","updated_at":"2018-12-07T06:07:22Z","pushed_at":"2018-12-07T06:07:21Z","git_url":"git://github.com/Jonariguez/d2l-zh.git","ssh_url":"[email protected]:Jonariguez/d2l-zh.git","clone_url":"https://github.com/Jonariguez/d2l-zh.git","svn_url":"https://github.com/Jonariguez/d2l-zh","homepage":"https://zh.diveintodeeplearning.org","size":157535,"stargazers_count":0,"watchers_count":0,"language":"Python","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"diveintodeeplearning:master","ref":"master","sha":"4bc34d14ba811cc6653f66dde2db368257b5d7bd","user":{"login":"diveintodeeplearning","id":43974506,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQzOTc0NTA2","avatar_url":"https://avatars0.githubusercontent.com/u/43974506?v=4","gravatar_id":"","url":"https://api.github.com/users/diveintodeeplearning","html_url":"https://github.com/diveintodeeplearning","followers_url":"https://api.github.com/users/diveintodeeplearning/followers","following_url":"https://api.github.com/users/diveintodeeplearning/following{/other_user}","gists_url":"https://api.github.com/users/diveintodeeplearning/gists{/gist_id}","starred_url":"https://api.github.com/users/diveintodeeplearning/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/diveintodeeplearning/subscriptions","organizations_url":"https://api.github.com/users/diveintodeeplearning/orgs","repos_url":"https://api.github.com/users/diveintodeeplearning/repos","events_url":"https://api.github.com/users/diveintodeeplearning/events{/privacy}","received_events_url":"https://api.github.com/users/diveintodeeplearning/received_events","type":"Organization","site_admin":false},"repo":{"id":101138315,"node_id":"MDEwOlJlcG9zaXRvcnkxMDExMzgzMTU=","name":"d2l-zh","full_name":"diveintodeeplearning/d2l-zh","private":false,"owner":{"login":"diveintodeeplearning","id":43974506,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQzOTc0NTA2","avatar_url":"https://avatars0.githubusercontent.com/u/43974506?v=4","gravatar_id":"","url":"https://api.github.com/users/diveintodeeplearning","html_url":"https://github.com/diveintodeeplearning","followers_url":"https://api.github.com/users/diveintodeeplearning/followers","following_url":"https://api.github.com/users/diveintodeeplearning/following{/other_user}","gists_url":"https://api.github.com/users/diveintodeeplearning/gists{/gist_id}","starred_url":"https://api.github.com/users/diveintodeeplearning/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/diveintodeeplearning/subscriptions","organizations_url":"https://api.github.com/users/diveintodeeplearning/orgs","repos_url":"https://api.github.com/users/diveintodeeplearning/repos","events_url":"https://api.github.com/users/diveintodeeplearning/events{/privacy}","received_events_url":"https://api.github.com/users/diveintodeeplearning/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/diveintodeeplearning/d2l-zh","description":"《动手学深度学习》","fork":false,"url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh","forks_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/forks","keys_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/keys{/key_id}","collaborators_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/teams","hooks_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/hooks","issue_events_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/issues/events{/number}","events_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/events","assignees_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/assignees{/user}","branches_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/branches{/branch}","tags_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/tags","blobs_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/git/refs{/sha}","trees_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/git/trees{/sha}","statuses_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/statuses/{sha}","languages_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/languages","stargazers_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/stargazers","contributors_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/contributors","subscribers_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/subscribers","subscription_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/subscription","commits_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/commits{/sha}","git_commits_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/git/commits{/sha}","comments_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/comments{/number}","issue_comment_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/issues/comments{/number}","contents_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/contents/{+path}","compare_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/compare/{base}...{head}","merges_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/merges","archive_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/downloads","issues_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/issues{/number}","pulls_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/pulls{/number}","milestones_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/milestones{/number}","notifications_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/labels{/name}","releases_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/releases{/id}","deployments_url":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/deployments","created_at":"2017-08-23T04:40:24Z","updated_at":"2018-12-10T02:51:59Z","pushed_at":"2018-12-10T02:51:56Z","git_url":"git://github.com/diveintodeeplearning/d2l-zh.git","ssh_url":"[email protected]:diveintodeeplearning/d2l-zh.git","clone_url":"https://github.com/diveintodeeplearning/d2l-zh.git","svn_url":"https://github.com/diveintodeeplearning/d2l-zh","homepage":"https://zh.diveintodeeplearning.org","size":157575,"stargazers_count":5221,"watchers_count":5221,"language":"Python","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":1432,"mirror_url":null,"archived":false,"open_issues_count":2,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"forks":1432,"open_issues":2,"watchers":5221,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/pulls/442"},"html":{"href":"https://github.com/diveintodeeplearning/d2l-zh/pull/442"},"issue":{"href":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/issues/442"},"comments":{"href":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/issues/442/comments"},"review_comments":{"href":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/pulls/442/comments"},"review_comment":{"href":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/pulls/442/commits"},"statuses":{"href":"https://api.github.com/repos/diveintodeeplearning/d2l-zh/statuses/6e6cacb0edc2acde478e1868737b2f233d0a587b"}},"author_association":"CONTRIBUTOR"}} | {
"id": 101138315,
"name": "diveintodeeplearning/d2l-zh",
"url": "https://api.github.com/repos/diveintodeeplearning/d2l-zh"
} | {
"id": 22279212,
"login": "astonzhang",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/22279212?",
"url": "https://api.github.com/users/astonzhang"
} | {
"id": 43974506,
"login": "diveintodeeplearning",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/43974506?",
"url": "https://api.github.com/orgs/diveintodeeplearning"
} | 2018-12-10T02:54:32 | 8724073796 | {"actor":{"display_login":"astonzhang"}} |
PullRequestReviewCommentEvent | true | {"action":"created","comment":{"url":"https://api.github.com/repos/ITAR089IF/project-management-tool/pulls/comments/232177083","pull_request_review_id":173316828,"id":232177083,"node_id":"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDIzMjE3NzA4Mw==","diff_hunk":"@@ -1,4 +1,6 @@\n class Account::TasksController < Account::AccountController\n+ after_action :send_email_when_task_complete, only: :complete","path":"app/controllers/account/tasks_controller.rb","position":2,"original_position":2,"commit_id":"189e8cb1b3792468721e6059e54831cc0ab48297","original_commit_id":"189e8cb1b3792468721e6059e54831cc0ab48297","user":{"login":"romaslmd","id":11822129,"node_id":"MDQ6VXNlcjExODIyMTI5","avatar_url":"https://avatars2.githubusercontent.com/u/11822129?v=4","gravatar_id":"","url":"https://api.github.com/users/romaslmd","html_url":"https://github.com/romaslmd","followers_url":"https://api.github.com/users/romaslmd/followers","following_url":"https://api.github.com/users/romaslmd/following{/other_user}","gists_url":"https://api.github.com/users/romaslmd/gists{/gist_id}","starred_url":"https://api.github.com/users/romaslmd/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/romaslmd/subscriptions","organizations_url":"https://api.github.com/users/romaslmd/orgs","repos_url":"https://api.github.com/users/romaslmd/repos","events_url":"https://api.github.com/users/romaslmd/events{/privacy}","received_events_url":"https://api.github.com/users/romaslmd/received_events","type":"User","site_admin":false},"body":"yeah, you can send email within an action when u use `deliver_later`, it'll trigger async job and wouldn't cause a performance spike","created_at":"2018-11-09T08:47:46Z","updated_at":"2018-11-09T08:47:47Z","html_url":"https://github.com/ITAR089IF/project-management-tool/pull/18#discussion_r232177083","pull_request_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/pulls/18","author_association":"NONE","_links":{"self":{"href":"https://api.github.com/repos/ITAR089IF/project-management-tool/pulls/comments/232177083"},"html":{"href":"https://github.com/ITAR089IF/project-management-tool/pull/18#discussion_r232177083"},"pull_request":{"href":"https://api.github.com/repos/ITAR089IF/project-management-tool/pulls/18"}},"in_reply_to_id":232176127},"pull_request":{"url":"https://api.github.com/repos/ITAR089IF/project-management-tool/pulls/18","id":229020246,"node_id":"MDExOlB1bGxSZXF1ZXN0MjI5MDIwMjQ2","html_url":"https://github.com/ITAR089IF/project-management-tool/pull/18","diff_url":"https://github.com/ITAR089IF/project-management-tool/pull/18.diff","patch_url":"https://github.com/ITAR089IF/project-management-tool/pull/18.patch","issue_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/issues/18","number":18,"state":"open","locked":false,"title":"Send email when status changed","user":{"login":"boikonataliii","id":18039831,"node_id":"MDQ6VXNlcjE4MDM5ODMx","avatar_url":"https://avatars1.githubusercontent.com/u/18039831?v=4","gravatar_id":"","url":"https://api.github.com/users/boikonataliii","html_url":"https://github.com/boikonataliii","followers_url":"https://api.github.com/users/boikonataliii/followers","following_url":"https://api.github.com/users/boikonataliii/following{/other_user}","gists_url":"https://api.github.com/users/boikonataliii/gists{/gist_id}","starred_url":"https://api.github.com/users/boikonataliii/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/boikonataliii/subscriptions","organizations_url":"https://api.github.com/users/boikonataliii/orgs","repos_url":"https://api.github.com/users/boikonataliii/repos","events_url":"https://api.github.com/users/boikonataliii/events{/privacy}","received_events_url":"https://api.github.com/users/boikonataliii/received_events","type":"User","site_admin":false},"body":"**STATUS**\r\nREADY\r\n\r\n**DESCRIPTION**\r\nSending email for followers when task mark as complete\r\n![screenshot from 2018-11-09 00-17-26](https://user-images.githubusercontent.com/18039831/48235751-c9e49d00-e3c7-11e8-91aa-1da631756602.png)\r\n\r\n\r\n\r\n**CHECK LIST**\r\n- [x] specs added\r\n- [ ] specs passed\r\n- [ ] code coverage >90%\r\n- [x] DB indexes added if needed\r\n- [x] seed.rb file is updated if needed\r\n- [x] PR is reviewed manually again (to make sure you have 100% ready code)\r\n- [x] PR doesn't have conflicts with main branch\r\n- [x] I've checked new feature as logged in and logged out user if needed\r\n- [x] \"let!\" is used in specs","created_at":"2018-11-07T13:02:57Z","updated_at":"2018-11-09T08:47:47Z","closed_at":null,"merged_at":null,"merge_commit_sha":"56c4d3ff48a304b1817136078ee8aed1929fd7db","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"commits_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/pulls/18/commits","review_comments_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/pulls/18/comments","review_comment_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/pulls/comments{/number}","comments_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/issues/18/comments","statuses_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/statuses/189e8cb1b3792468721e6059e54831cc0ab48297","head":{"label":"ITAR089IF:send_email_when_status_changed","ref":"send_email_when_status_changed","sha":"189e8cb1b3792468721e6059e54831cc0ab48297","user":{"login":"ITAR089IF","id":44292928,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ0MjkyOTI4","avatar_url":"https://avatars3.githubusercontent.com/u/44292928?v=4","gravatar_id":"","url":"https://api.github.com/users/ITAR089IF","html_url":"https://github.com/ITAR089IF","followers_url":"https://api.github.com/users/ITAR089IF/followers","following_url":"https://api.github.com/users/ITAR089IF/following{/other_user}","gists_url":"https://api.github.com/users/ITAR089IF/gists{/gist_id}","starred_url":"https://api.github.com/users/ITAR089IF/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ITAR089IF/subscriptions","organizations_url":"https://api.github.com/users/ITAR089IF/orgs","repos_url":"https://api.github.com/users/ITAR089IF/repos","events_url":"https://api.github.com/users/ITAR089IF/events{/privacy}","received_events_url":"https://api.github.com/users/ITAR089IF/received_events","type":"Organization","site_admin":false},"repo":{"id":153779718,"node_id":"MDEwOlJlcG9zaXRvcnkxNTM3Nzk3MTg=","name":"project-management-tool","full_name":"ITAR089IF/project-management-tool","private":false,"owner":{"login":"ITAR089IF","id":44292928,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ0MjkyOTI4","avatar_url":"https://avatars3.githubusercontent.com/u/44292928?v=4","gravatar_id":"","url":"https://api.github.com/users/ITAR089IF","html_url":"https://github.com/ITAR089IF","followers_url":"https://api.github.com/users/ITAR089IF/followers","following_url":"https://api.github.com/users/ITAR089IF/following{/other_user}","gists_url":"https://api.github.com/users/ITAR089IF/gists{/gist_id}","starred_url":"https://api.github.com/users/ITAR089IF/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ITAR089IF/subscriptions","organizations_url":"https://api.github.com/users/ITAR089IF/orgs","repos_url":"https://api.github.com/users/ITAR089IF/repos","events_url":"https://api.github.com/users/ITAR089IF/events{/privacy}","received_events_url":"https://api.github.com/users/ITAR089IF/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/ITAR089IF/project-management-tool","description":"test project group IF-089.Ruby","fork":false,"url":"https://api.github.com/repos/ITAR089IF/project-management-tool","forks_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/forks","keys_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/teams","hooks_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/hooks","issue_events_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/issues/events{/number}","events_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/events","assignees_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/assignees{/user}","branches_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/branches{/branch}","tags_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/tags","blobs_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/git/refs{/sha}","trees_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/statuses/{sha}","languages_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/languages","stargazers_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/stargazers","contributors_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/contributors","subscribers_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/subscribers","subscription_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/subscription","commits_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/commits{/sha}","git_commits_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/git/commits{/sha}","comments_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/comments{/number}","issue_comment_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/issues/comments{/number}","contents_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/contents/{+path}","compare_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/merges","archive_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/downloads","issues_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/issues{/number}","pulls_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/pulls{/number}","milestones_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/milestones{/number}","notifications_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/labels{/name}","releases_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/releases{/id}","deployments_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/deployments","created_at":"2018-10-19T12:31:31Z","updated_at":"2018-11-09T08:39:59Z","pushed_at":"2018-11-09T08:41:15Z","git_url":"git://github.com/ITAR089IF/project-management-tool.git","ssh_url":"[email protected]:ITAR089IF/project-management-tool.git","clone_url":"https://github.com/ITAR089IF/project-management-tool.git","svn_url":"https://github.com/ITAR089IF/project-management-tool","homepage":null,"size":2438,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":6,"license":null,"forks":0,"open_issues":6,"watchers":0,"default_branch":"development"}},"base":{"label":"ITAR089IF:development","ref":"development","sha":"b092eacb5818dd9cedd90bd40fa2668888cd3732","user":{"login":"ITAR089IF","id":44292928,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ0MjkyOTI4","avatar_url":"https://avatars3.githubusercontent.com/u/44292928?v=4","gravatar_id":"","url":"https://api.github.com/users/ITAR089IF","html_url":"https://github.com/ITAR089IF","followers_url":"https://api.github.com/users/ITAR089IF/followers","following_url":"https://api.github.com/users/ITAR089IF/following{/other_user}","gists_url":"https://api.github.com/users/ITAR089IF/gists{/gist_id}","starred_url":"https://api.github.com/users/ITAR089IF/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ITAR089IF/subscriptions","organizations_url":"https://api.github.com/users/ITAR089IF/orgs","repos_url":"https://api.github.com/users/ITAR089IF/repos","events_url":"https://api.github.com/users/ITAR089IF/events{/privacy}","received_events_url":"https://api.github.com/users/ITAR089IF/received_events","type":"Organization","site_admin":false},"repo":{"id":153779718,"node_id":"MDEwOlJlcG9zaXRvcnkxNTM3Nzk3MTg=","name":"project-management-tool","full_name":"ITAR089IF/project-management-tool","private":false,"owner":{"login":"ITAR089IF","id":44292928,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ0MjkyOTI4","avatar_url":"https://avatars3.githubusercontent.com/u/44292928?v=4","gravatar_id":"","url":"https://api.github.com/users/ITAR089IF","html_url":"https://github.com/ITAR089IF","followers_url":"https://api.github.com/users/ITAR089IF/followers","following_url":"https://api.github.com/users/ITAR089IF/following{/other_user}","gists_url":"https://api.github.com/users/ITAR089IF/gists{/gist_id}","starred_url":"https://api.github.com/users/ITAR089IF/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ITAR089IF/subscriptions","organizations_url":"https://api.github.com/users/ITAR089IF/orgs","repos_url":"https://api.github.com/users/ITAR089IF/repos","events_url":"https://api.github.com/users/ITAR089IF/events{/privacy}","received_events_url":"https://api.github.com/users/ITAR089IF/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/ITAR089IF/project-management-tool","description":"test project group IF-089.Ruby","fork":false,"url":"https://api.github.com/repos/ITAR089IF/project-management-tool","forks_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/forks","keys_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/teams","hooks_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/hooks","issue_events_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/issues/events{/number}","events_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/events","assignees_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/assignees{/user}","branches_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/branches{/branch}","tags_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/tags","blobs_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/git/refs{/sha}","trees_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/statuses/{sha}","languages_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/languages","stargazers_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/stargazers","contributors_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/contributors","subscribers_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/subscribers","subscription_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/subscription","commits_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/commits{/sha}","git_commits_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/git/commits{/sha}","comments_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/comments{/number}","issue_comment_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/issues/comments{/number}","contents_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/contents/{+path}","compare_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/merges","archive_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/downloads","issues_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/issues{/number}","pulls_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/pulls{/number}","milestones_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/milestones{/number}","notifications_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/labels{/name}","releases_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/releases{/id}","deployments_url":"https://api.github.com/repos/ITAR089IF/project-management-tool/deployments","created_at":"2018-10-19T12:31:31Z","updated_at":"2018-11-09T08:39:59Z","pushed_at":"2018-11-09T08:41:15Z","git_url":"git://github.com/ITAR089IF/project-management-tool.git","ssh_url":"[email protected]:ITAR089IF/project-management-tool.git","clone_url":"https://github.com/ITAR089IF/project-management-tool.git","svn_url":"https://github.com/ITAR089IF/project-management-tool","homepage":null,"size":2438,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":6,"license":null,"forks":0,"open_issues":6,"watchers":0,"default_branch":"development"}},"_links":{"self":{"href":"https://api.github.com/repos/ITAR089IF/project-management-tool/pulls/18"},"html":{"href":"https://github.com/ITAR089IF/project-management-tool/pull/18"},"issue":{"href":"https://api.github.com/repos/ITAR089IF/project-management-tool/issues/18"},"comments":{"href":"https://api.github.com/repos/ITAR089IF/project-management-tool/issues/18/comments"},"review_comments":{"href":"https://api.github.com/repos/ITAR089IF/project-management-tool/pulls/18/comments"},"review_comment":{"href":"https://api.github.com/repos/ITAR089IF/project-management-tool/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/ITAR089IF/project-management-tool/pulls/18/commits"},"statuses":{"href":"https://api.github.com/repos/ITAR089IF/project-management-tool/statuses/189e8cb1b3792468721e6059e54831cc0ab48297"}},"author_association":"CONTRIBUTOR"}} | {
"id": 153779718,
"name": "ITAR089IF/project-management-tool",
"url": "https://api.github.com/repos/ITAR089IF/project-management-tool"
} | {
"id": 11822129,
"login": "romaslmd",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/11822129?",
"url": "https://api.github.com/users/romaslmd"
} | {
"id": 44292928,
"login": "ITAR089IF",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/44292928?",
"url": "https://api.github.com/orgs/ITAR089IF"
} | 2018-11-09T08:47:46 | 8561867228 | {"actor":{"display_login":"romaslmd"}} |
PullRequestReviewCommentEvent | true | {"action":"created","comment":{"url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/pulls/comments/238570563","pull_request_review_id":181142279,"id":238570563,"node_id":"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDIzODU3MDU2Mw==","diff_hunk":"@@ -6,8 +6,59 @@\n */\n public class App \n {\n- public static void main( String[] args )\n+\n+ private static final int MAX_PRICE = 10;\n+\n+ public static void main(String[] args )\n {\n System.out.println( \"Hello World!\" );\n }\n+\n+\n+\n+ public void newMethodGitchecks(){\n+ int target = -5;\n+ int num = 3;\n+\n+ target =- num; // Noncompliant; target = -3. Is that really what's meant?\n+ target =+ num; // Noncompliant; target = 3","path":"src/main/java/com/jcg/maven/App.java","position":20,"original_position":20,"commit_id":"c12aa5756eda1f6cb065ce1a84959beacfc8b881","original_commit_id":"c12aa5756eda1f6cb065ce1a84959beacfc8b881","user":{"login":"local-aurelie-github-app[bot]","id":43753641,"node_id":"MDM6Qm90NDM3NTM2NDE=","avatar_url":"https://avatars0.githubusercontent.com/u/42917701?v=4","gravatar_id":"","url":"https://api.github.com/users/local-aurelie-github-app%5Bbot%5D","html_url":"https://github.com/apps/local-aurelie-github-app","followers_url":"https://api.github.com/users/local-aurelie-github-app%5Bbot%5D/followers","following_url":"https://api.github.com/users/local-aurelie-github-app%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/local-aurelie-github-app%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/local-aurelie-github-app%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/local-aurelie-github-app%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/local-aurelie-github-app%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/local-aurelie-github-app%5Bbot%5D/repos","events_url":"https://api.github.com/users/local-aurelie-github-app%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/local-aurelie-github-app%5Bbot%5D/received_events","type":"Bot","site_admin":false},"body":"![Code Smell](https://sonarsource.github.io/sonar-github/code_smell.png 'Code Smell') Code Smell: Remove this useless assignment to local variable \"target\". ([squid:S1854](https://aurelie.eu.ngrok.io/organizations/myglobalorganization/rules#rule_key=squid%3AS1854))\n\n[See it in SonarCloud](https://aurelie.eu.ngrok.io/project/issues?id=MyGlobalOrganization_globalRepository3&pullRequest=14&issues=AWd4Zxe6YI-pGn-BlDAG&open=AWd4Zxe6YI-pGn-BlDAG)\n\n[ISSUE_KEY]: AWd4Zxe6YI-pGn-BlDAG","created_at":"2018-12-04T08:49:06Z","updated_at":"2018-12-04T08:49:08Z","html_url":"https://github.com/MyGlobalOrganization/globalRepository3/pull/14#discussion_r238570563","pull_request_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/pulls/14","author_association":"NONE","_links":{"self":{"href":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/pulls/comments/238570563"},"html":{"href":"https://github.com/MyGlobalOrganization/globalRepository3/pull/14#discussion_r238570563"},"pull_request":{"href":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/pulls/14"}}},"pull_request":{"url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/pulls/14","id":235714915,"node_id":"MDExOlB1bGxSZXF1ZXN0MjM1NzE0OTE1","html_url":"https://github.com/MyGlobalOrganization/globalRepository3/pull/14","diff_url":"https://github.com/MyGlobalOrganization/globalRepository3/pull/14.diff","patch_url":"https://github.com/MyGlobalOrganization/globalRepository3/pull/14.patch","issue_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/issues/14","number":14,"state":"open","locked":false,"title":"Git checks4 3","user":{"login":"aurelie-boiteux-sonarsource","id":42917701,"node_id":"MDQ6VXNlcjQyOTE3NzAx","avatar_url":"https://avatars0.githubusercontent.com/u/42917701?v=4","gravatar_id":"","url":"https://api.github.com/users/aurelie-boiteux-sonarsource","html_url":"https://github.com/aurelie-boiteux-sonarsource","followers_url":"https://api.github.com/users/aurelie-boiteux-sonarsource/followers","following_url":"https://api.github.com/users/aurelie-boiteux-sonarsource/following{/other_user}","gists_url":"https://api.github.com/users/aurelie-boiteux-sonarsource/gists{/gist_id}","starred_url":"https://api.github.com/users/aurelie-boiteux-sonarsource/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/aurelie-boiteux-sonarsource/subscriptions","organizations_url":"https://api.github.com/users/aurelie-boiteux-sonarsource/orgs","repos_url":"https://api.github.com/users/aurelie-boiteux-sonarsource/repos","events_url":"https://api.github.com/users/aurelie-boiteux-sonarsource/events{/privacy}","received_events_url":"https://api.github.com/users/aurelie-boiteux-sonarsource/received_events","type":"User","site_admin":false},"body":"","created_at":"2018-12-04T08:13:40Z","updated_at":"2018-12-04T08:49:07Z","closed_at":null,"merged_at":null,"merge_commit_sha":"e8763b88f7ea0d717b2f18da05aac72ed0758275","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"commits_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/pulls/14/commits","review_comments_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/pulls/14/comments","review_comment_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/pulls/comments{/number}","comments_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/issues/14/comments","statuses_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/statuses/c12aa5756eda1f6cb065ce1a84959beacfc8b881","head":{"label":"MyGlobalOrganization:git-checks4","ref":"git-checks4","sha":"c12aa5756eda1f6cb065ce1a84959beacfc8b881","user":{"login":"MyGlobalOrganization","id":44471210,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ0NDcxMjEw","avatar_url":"https://avatars0.githubusercontent.com/u/44471210?v=4","gravatar_id":"","url":"https://api.github.com/users/MyGlobalOrganization","html_url":"https://github.com/MyGlobalOrganization","followers_url":"https://api.github.com/users/MyGlobalOrganization/followers","following_url":"https://api.github.com/users/MyGlobalOrganization/following{/other_user}","gists_url":"https://api.github.com/users/MyGlobalOrganization/gists{/gist_id}","starred_url":"https://api.github.com/users/MyGlobalOrganization/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MyGlobalOrganization/subscriptions","organizations_url":"https://api.github.com/users/MyGlobalOrganization/orgs","repos_url":"https://api.github.com/users/MyGlobalOrganization/repos","events_url":"https://api.github.com/users/MyGlobalOrganization/events{/privacy}","received_events_url":"https://api.github.com/users/MyGlobalOrganization/received_events","type":"Organization","site_admin":false},"repo":{"id":154839834,"node_id":"MDEwOlJlcG9zaXRvcnkxNTQ4Mzk4MzQ=","name":"globalRepository3","full_name":"MyGlobalOrganization/globalRepository3","private":false,"owner":{"login":"MyGlobalOrganization","id":44471210,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ0NDcxMjEw","avatar_url":"https://avatars0.githubusercontent.com/u/44471210?v=4","gravatar_id":"","url":"https://api.github.com/users/MyGlobalOrganization","html_url":"https://github.com/MyGlobalOrganization","followers_url":"https://api.github.com/users/MyGlobalOrganization/followers","following_url":"https://api.github.com/users/MyGlobalOrganization/following{/other_user}","gists_url":"https://api.github.com/users/MyGlobalOrganization/gists{/gist_id}","starred_url":"https://api.github.com/users/MyGlobalOrganization/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MyGlobalOrganization/subscriptions","organizations_url":"https://api.github.com/users/MyGlobalOrganization/orgs","repos_url":"https://api.github.com/users/MyGlobalOrganization/repos","events_url":"https://api.github.com/users/MyGlobalOrganization/events{/privacy}","received_events_url":"https://api.github.com/users/MyGlobalOrganization/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/MyGlobalOrganization/globalRepository3","description":null,"fork":false,"url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3","forks_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/forks","keys_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/keys{/key_id}","collaborators_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/teams","hooks_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/hooks","issue_events_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/issues/events{/number}","events_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/events","assignees_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/assignees{/user}","branches_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/branches{/branch}","tags_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/tags","blobs_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/git/refs{/sha}","trees_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/git/trees{/sha}","statuses_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/statuses/{sha}","languages_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/languages","stargazers_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/stargazers","contributors_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/contributors","subscribers_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/subscribers","subscription_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/subscription","commits_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/commits{/sha}","git_commits_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/git/commits{/sha}","comments_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/comments{/number}","issue_comment_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/issues/comments{/number}","contents_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/contents/{+path}","compare_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/compare/{base}...{head}","merges_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/merges","archive_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/downloads","issues_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/issues{/number}","pulls_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/pulls{/number}","milestones_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/milestones{/number}","notifications_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/labels{/name}","releases_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/releases{/id}","deployments_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/deployments","created_at":"2018-10-26T13:35:34Z","updated_at":"2018-11-02T09:58:06Z","pushed_at":"2018-12-04T08:48:51Z","git_url":"git://github.com/MyGlobalOrganization/globalRepository3.git","ssh_url":"[email protected]:MyGlobalOrganization/globalRepository3.git","clone_url":"https://github.com/MyGlobalOrganization/globalRepository3.git","svn_url":"https://github.com/MyGlobalOrganization/globalRepository3","homepage":null,"size":36,"stargazers_count":0,"watchers_count":0,"language":"Java","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":3,"license":null,"forks":0,"open_issues":3,"watchers":0,"default_branch":"master"}},"base":{"label":"MyGlobalOrganization:master","ref":"master","sha":"38b5bec1ea96fd015ef112017c3faa381a217526","user":{"login":"MyGlobalOrganization","id":44471210,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ0NDcxMjEw","avatar_url":"https://avatars0.githubusercontent.com/u/44471210?v=4","gravatar_id":"","url":"https://api.github.com/users/MyGlobalOrganization","html_url":"https://github.com/MyGlobalOrganization","followers_url":"https://api.github.com/users/MyGlobalOrganization/followers","following_url":"https://api.github.com/users/MyGlobalOrganization/following{/other_user}","gists_url":"https://api.github.com/users/MyGlobalOrganization/gists{/gist_id}","starred_url":"https://api.github.com/users/MyGlobalOrganization/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MyGlobalOrganization/subscriptions","organizations_url":"https://api.github.com/users/MyGlobalOrganization/orgs","repos_url":"https://api.github.com/users/MyGlobalOrganization/repos","events_url":"https://api.github.com/users/MyGlobalOrganization/events{/privacy}","received_events_url":"https://api.github.com/users/MyGlobalOrganization/received_events","type":"Organization","site_admin":false},"repo":{"id":154839834,"node_id":"MDEwOlJlcG9zaXRvcnkxNTQ4Mzk4MzQ=","name":"globalRepository3","full_name":"MyGlobalOrganization/globalRepository3","private":false,"owner":{"login":"MyGlobalOrganization","id":44471210,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ0NDcxMjEw","avatar_url":"https://avatars0.githubusercontent.com/u/44471210?v=4","gravatar_id":"","url":"https://api.github.com/users/MyGlobalOrganization","html_url":"https://github.com/MyGlobalOrganization","followers_url":"https://api.github.com/users/MyGlobalOrganization/followers","following_url":"https://api.github.com/users/MyGlobalOrganization/following{/other_user}","gists_url":"https://api.github.com/users/MyGlobalOrganization/gists{/gist_id}","starred_url":"https://api.github.com/users/MyGlobalOrganization/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MyGlobalOrganization/subscriptions","organizations_url":"https://api.github.com/users/MyGlobalOrganization/orgs","repos_url":"https://api.github.com/users/MyGlobalOrganization/repos","events_url":"https://api.github.com/users/MyGlobalOrganization/events{/privacy}","received_events_url":"https://api.github.com/users/MyGlobalOrganization/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/MyGlobalOrganization/globalRepository3","description":null,"fork":false,"url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3","forks_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/forks","keys_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/keys{/key_id}","collaborators_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/teams","hooks_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/hooks","issue_events_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/issues/events{/number}","events_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/events","assignees_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/assignees{/user}","branches_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/branches{/branch}","tags_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/tags","blobs_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/git/refs{/sha}","trees_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/git/trees{/sha}","statuses_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/statuses/{sha}","languages_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/languages","stargazers_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/stargazers","contributors_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/contributors","subscribers_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/subscribers","subscription_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/subscription","commits_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/commits{/sha}","git_commits_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/git/commits{/sha}","comments_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/comments{/number}","issue_comment_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/issues/comments{/number}","contents_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/contents/{+path}","compare_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/compare/{base}...{head}","merges_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/merges","archive_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/downloads","issues_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/issues{/number}","pulls_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/pulls{/number}","milestones_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/milestones{/number}","notifications_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/labels{/name}","releases_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/releases{/id}","deployments_url":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/deployments","created_at":"2018-10-26T13:35:34Z","updated_at":"2018-11-02T09:58:06Z","pushed_at":"2018-12-04T08:48:51Z","git_url":"git://github.com/MyGlobalOrganization/globalRepository3.git","ssh_url":"[email protected]:MyGlobalOrganization/globalRepository3.git","clone_url":"https://github.com/MyGlobalOrganization/globalRepository3.git","svn_url":"https://github.com/MyGlobalOrganization/globalRepository3","homepage":null,"size":36,"stargazers_count":0,"watchers_count":0,"language":"Java","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":3,"license":null,"forks":0,"open_issues":3,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/pulls/14"},"html":{"href":"https://github.com/MyGlobalOrganization/globalRepository3/pull/14"},"issue":{"href":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/issues/14"},"comments":{"href":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/issues/14/comments"},"review_comments":{"href":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/pulls/14/comments"},"review_comment":{"href":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/pulls/14/commits"},"statuses":{"href":"https://api.github.com/repos/MyGlobalOrganization/globalRepository3/statuses/c12aa5756eda1f6cb065ce1a84959beacfc8b881"}},"author_association":"CONTRIBUTOR"}} | {
"id": 154839834,
"name": "MyGlobalOrganization/globalRepository3",
"url": "https://api.github.com/repos/MyGlobalOrganization/globalRepository3"
} | {
"id": 43753641,
"login": "local-aurelie-github-app[bot]",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/43753641?",
"url": "https://api.github.com/users/local-aurelie-github-app[bot]"
} | {
"id": 44471210,
"login": "MyGlobalOrganization",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/44471210?",
"url": "https://api.github.com/orgs/MyGlobalOrganization"
} | 2018-12-04T08:49:06 | 8693082875 | {"actor":{"display_login":"local-aurelie-github-app"}} |
PullRequestReviewCommentEvent | true | {"action":"created","comment":{"url":"https://api.github.com/repos/rpt09-scully/reviews-service/pulls/comments/234836728","pull_request_review_id":176561786,"id":234836728,"node_id":"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDIzNDgzNjcyOA==","diff_hunk":"@@ -0,0 +1,34 @@\n+const mysql = require('mysql');\n+const config = require('./config.js');\n+\n+const con = mysql.createConnection(config);\n+\n+\n+const insertReview = (params, cb) => {\n+ let str = `INSERT INTO reviews (user_id, trail_id, description) VALUES (?, ?, ?)`;\n+\n+ con.query(str, params, (err, results) => {\n+ if (err) throw err;\n+ cb(results);\n+ });\n+};\n+\n+const getAll = (cb) => {\n+ let str = `select * from reviews inner join activities where reviews.act_id = activities.activity_id`;\n+\n+ con.query(str, (err, results) => {\n+ if (err) throw err;\n+ cb(results);\n+ });\n+};\n+//\n+\n+module.exports = {\n+ insertReview,","path":"database/index.js","position":27,"original_position":27,"commit_id":"026f08b7e164b52ed6afd7ec6bd40a966d2622a0","original_commit_id":"026f08b7e164b52ed6afd7ec6bd40a966d2622a0","user":{"login":"cjm771","id":4239492,"node_id":"MDQ6VXNlcjQyMzk0OTI=","avatar_url":"https://avatars1.githubusercontent.com/u/4239492?v=4","gravatar_id":"","url":"https://api.github.com/users/cjm771","html_url":"https://github.com/cjm771","followers_url":"https://api.github.com/users/cjm771/followers","following_url":"https://api.github.com/users/cjm771/following{/other_user}","gists_url":"https://api.github.com/users/cjm771/gists{/gist_id}","starred_url":"https://api.github.com/users/cjm771/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cjm771/subscriptions","organizations_url":"https://api.github.com/users/cjm771/orgs","repos_url":"https://api.github.com/users/cjm771/repos","events_url":"https://api.github.com/users/cjm771/events{/privacy}","received_events_url":"https://api.github.com/users/cjm771/received_events","type":"User","site_admin":false},"body":"not sure if this is being used anywhere? if not, remove, seems your seed.js file is doing this.","created_at":"2018-11-20T00:55:06Z","updated_at":"2018-11-20T00:56:42Z","html_url":"https://github.com/rpt09-scully/reviews-service/pull/2#discussion_r234836728","pull_request_url":"https://api.github.com/repos/rpt09-scully/reviews-service/pulls/2","author_association":"NONE","_links":{"self":{"href":"https://api.github.com/repos/rpt09-scully/reviews-service/pulls/comments/234836728"},"html":{"href":"https://github.com/rpt09-scully/reviews-service/pull/2#discussion_r234836728"},"pull_request":{"href":"https://api.github.com/repos/rpt09-scully/reviews-service/pulls/2"}}},"pull_request":{"url":"https://api.github.com/repos/rpt09-scully/reviews-service/pulls/2","id":232135100,"node_id":"MDExOlB1bGxSZXF1ZXN0MjMyMTM1MTAw","html_url":"https://github.com/rpt09-scully/reviews-service/pull/2","diff_url":"https://github.com/rpt09-scully/reviews-service/pull/2.diff","patch_url":"https://github.com/rpt09-scully/reviews-service/pull/2.patch","issue_url":"https://api.github.com/repos/rpt09-scully/reviews-service/issues/2","number":2,"state":"open","locked":false,"title":"Database setup","user":{"login":"ryanbrennan12","id":35933099,"node_id":"MDQ6VXNlcjM1OTMzMDk5","avatar_url":"https://avatars3.githubusercontent.com/u/35933099?v=4","gravatar_id":"","url":"https://api.github.com/users/ryanbrennan12","html_url":"https://github.com/ryanbrennan12","followers_url":"https://api.github.com/users/ryanbrennan12/followers","following_url":"https://api.github.com/users/ryanbrennan12/following{/other_user}","gists_url":"https://api.github.com/users/ryanbrennan12/gists{/gist_id}","starred_url":"https://api.github.com/users/ryanbrennan12/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ryanbrennan12/subscriptions","organizations_url":"https://api.github.com/users/ryanbrennan12/orgs","repos_url":"https://api.github.com/users/ryanbrennan12/repos","events_url":"https://api.github.com/users/ryanbrennan12/events{/privacy}","received_events_url":"https://api.github.com/users/ryanbrennan12/received_events","type":"User","site_admin":false},"body":"- clone and run `npm install`\r\n`npm run seed-db` will create a local database and seed 100+ comments\r\n\r\n","created_at":"2018-11-19T22:39:44Z","updated_at":"2018-11-20T00:56:42Z","closed_at":null,"merged_at":null,"merge_commit_sha":"cb7e4abc048b114b8c4b7a85e476549416f1718e","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"commits_url":"https://api.github.com/repos/rpt09-scully/reviews-service/pulls/2/commits","review_comments_url":"https://api.github.com/repos/rpt09-scully/reviews-service/pulls/2/comments","review_comment_url":"https://api.github.com/repos/rpt09-scully/reviews-service/pulls/comments{/number}","comments_url":"https://api.github.com/repos/rpt09-scully/reviews-service/issues/2/comments","statuses_url":"https://api.github.com/repos/rpt09-scully/reviews-service/statuses/026f08b7e164b52ed6afd7ec6bd40a966d2622a0","head":{"label":"rpt09-scully:database_setup","ref":"database_setup","sha":"026f08b7e164b52ed6afd7ec6bd40a966d2622a0","user":{"login":"rpt09-scully","id":44855810,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ0ODU1ODEw","avatar_url":"https://avatars0.githubusercontent.com/u/44855810?v=4","gravatar_id":"","url":"https://api.github.com/users/rpt09-scully","html_url":"https://github.com/rpt09-scully","followers_url":"https://api.github.com/users/rpt09-scully/followers","following_url":"https://api.github.com/users/rpt09-scully/following{/other_user}","gists_url":"https://api.github.com/users/rpt09-scully/gists{/gist_id}","starred_url":"https://api.github.com/users/rpt09-scully/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rpt09-scully/subscriptions","organizations_url":"https://api.github.com/users/rpt09-scully/orgs","repos_url":"https://api.github.com/users/rpt09-scully/repos","events_url":"https://api.github.com/users/rpt09-scully/events{/privacy}","received_events_url":"https://api.github.com/users/rpt09-scully/received_events","type":"Organization","site_admin":false},"repo":{"id":157608255,"node_id":"MDEwOlJlcG9zaXRvcnkxNTc2MDgyNTU=","name":"reviews-service","full_name":"rpt09-scully/reviews-service","private":false,"owner":{"login":"rpt09-scully","id":44855810,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ0ODU1ODEw","avatar_url":"https://avatars0.githubusercontent.com/u/44855810?v=4","gravatar_id":"","url":"https://api.github.com/users/rpt09-scully","html_url":"https://github.com/rpt09-scully","followers_url":"https://api.github.com/users/rpt09-scully/followers","following_url":"https://api.github.com/users/rpt09-scully/following{/other_user}","gists_url":"https://api.github.com/users/rpt09-scully/gists{/gist_id}","starred_url":"https://api.github.com/users/rpt09-scully/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rpt09-scully/subscriptions","organizations_url":"https://api.github.com/users/rpt09-scully/orgs","repos_url":"https://api.github.com/users/rpt09-scully/repos","events_url":"https://api.github.com/users/rpt09-scully/events{/privacy}","received_events_url":"https://api.github.com/users/rpt09-scully/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/rpt09-scully/reviews-service","description":null,"fork":false,"url":"https://api.github.com/repos/rpt09-scully/reviews-service","forks_url":"https://api.github.com/repos/rpt09-scully/reviews-service/forks","keys_url":"https://api.github.com/repos/rpt09-scully/reviews-service/keys{/key_id}","collaborators_url":"https://api.github.com/repos/rpt09-scully/reviews-service/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/rpt09-scully/reviews-service/teams","hooks_url":"https://api.github.com/repos/rpt09-scully/reviews-service/hooks","issue_events_url":"https://api.github.com/repos/rpt09-scully/reviews-service/issues/events{/number}","events_url":"https://api.github.com/repos/rpt09-scully/reviews-service/events","assignees_url":"https://api.github.com/repos/rpt09-scully/reviews-service/assignees{/user}","branches_url":"https://api.github.com/repos/rpt09-scully/reviews-service/branches{/branch}","tags_url":"https://api.github.com/repos/rpt09-scully/reviews-service/tags","blobs_url":"https://api.github.com/repos/rpt09-scully/reviews-service/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/rpt09-scully/reviews-service/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/rpt09-scully/reviews-service/git/refs{/sha}","trees_url":"https://api.github.com/repos/rpt09-scully/reviews-service/git/trees{/sha}","statuses_url":"https://api.github.com/repos/rpt09-scully/reviews-service/statuses/{sha}","languages_url":"https://api.github.com/repos/rpt09-scully/reviews-service/languages","stargazers_url":"https://api.github.com/repos/rpt09-scully/reviews-service/stargazers","contributors_url":"https://api.github.com/repos/rpt09-scully/reviews-service/contributors","subscribers_url":"https://api.github.com/repos/rpt09-scully/reviews-service/subscribers","subscription_url":"https://api.github.com/repos/rpt09-scully/reviews-service/subscription","commits_url":"https://api.github.com/repos/rpt09-scully/reviews-service/commits{/sha}","git_commits_url":"https://api.github.com/repos/rpt09-scully/reviews-service/git/commits{/sha}","comments_url":"https://api.github.com/repos/rpt09-scully/reviews-service/comments{/number}","issue_comment_url":"https://api.github.com/repos/rpt09-scully/reviews-service/issues/comments{/number}","contents_url":"https://api.github.com/repos/rpt09-scully/reviews-service/contents/{+path}","compare_url":"https://api.github.com/repos/rpt09-scully/reviews-service/compare/{base}...{head}","merges_url":"https://api.github.com/repos/rpt09-scully/reviews-service/merges","archive_url":"https://api.github.com/repos/rpt09-scully/reviews-service/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/rpt09-scully/reviews-service/downloads","issues_url":"https://api.github.com/repos/rpt09-scully/reviews-service/issues{/number}","pulls_url":"https://api.github.com/repos/rpt09-scully/reviews-service/pulls{/number}","milestones_url":"https://api.github.com/repos/rpt09-scully/reviews-service/milestones{/number}","notifications_url":"https://api.github.com/repos/rpt09-scully/reviews-service/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/rpt09-scully/reviews-service/labels{/name}","releases_url":"https://api.github.com/repos/rpt09-scully/reviews-service/releases{/id}","deployments_url":"https://api.github.com/repos/rpt09-scully/reviews-service/deployments","created_at":"2018-11-14T20:41:06Z","updated_at":"2018-11-15T21:51:08Z","pushed_at":"2018-11-19T22:45:01Z","git_url":"git://github.com/rpt09-scully/reviews-service.git","ssh_url":"[email protected]:rpt09-scully/reviews-service.git","clone_url":"https://github.com/rpt09-scully/reviews-service.git","svn_url":"https://github.com/rpt09-scully/reviews-service","homepage":null,"size":274,"stargazers_count":0,"watchers_count":0,"language":"JavaScript","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":1,"license":null,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"base":{"label":"rpt09-scully:master","ref":"master","sha":"022bf61bd5481c5cc5b1b8f99e02d4456771d3d2","user":{"login":"rpt09-scully","id":44855810,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ0ODU1ODEw","avatar_url":"https://avatars0.githubusercontent.com/u/44855810?v=4","gravatar_id":"","url":"https://api.github.com/users/rpt09-scully","html_url":"https://github.com/rpt09-scully","followers_url":"https://api.github.com/users/rpt09-scully/followers","following_url":"https://api.github.com/users/rpt09-scully/following{/other_user}","gists_url":"https://api.github.com/users/rpt09-scully/gists{/gist_id}","starred_url":"https://api.github.com/users/rpt09-scully/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rpt09-scully/subscriptions","organizations_url":"https://api.github.com/users/rpt09-scully/orgs","repos_url":"https://api.github.com/users/rpt09-scully/repos","events_url":"https://api.github.com/users/rpt09-scully/events{/privacy}","received_events_url":"https://api.github.com/users/rpt09-scully/received_events","type":"Organization","site_admin":false},"repo":{"id":157608255,"node_id":"MDEwOlJlcG9zaXRvcnkxNTc2MDgyNTU=","name":"reviews-service","full_name":"rpt09-scully/reviews-service","private":false,"owner":{"login":"rpt09-scully","id":44855810,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ0ODU1ODEw","avatar_url":"https://avatars0.githubusercontent.com/u/44855810?v=4","gravatar_id":"","url":"https://api.github.com/users/rpt09-scully","html_url":"https://github.com/rpt09-scully","followers_url":"https://api.github.com/users/rpt09-scully/followers","following_url":"https://api.github.com/users/rpt09-scully/following{/other_user}","gists_url":"https://api.github.com/users/rpt09-scully/gists{/gist_id}","starred_url":"https://api.github.com/users/rpt09-scully/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rpt09-scully/subscriptions","organizations_url":"https://api.github.com/users/rpt09-scully/orgs","repos_url":"https://api.github.com/users/rpt09-scully/repos","events_url":"https://api.github.com/users/rpt09-scully/events{/privacy}","received_events_url":"https://api.github.com/users/rpt09-scully/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/rpt09-scully/reviews-service","description":null,"fork":false,"url":"https://api.github.com/repos/rpt09-scully/reviews-service","forks_url":"https://api.github.com/repos/rpt09-scully/reviews-service/forks","keys_url":"https://api.github.com/repos/rpt09-scully/reviews-service/keys{/key_id}","collaborators_url":"https://api.github.com/repos/rpt09-scully/reviews-service/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/rpt09-scully/reviews-service/teams","hooks_url":"https://api.github.com/repos/rpt09-scully/reviews-service/hooks","issue_events_url":"https://api.github.com/repos/rpt09-scully/reviews-service/issues/events{/number}","events_url":"https://api.github.com/repos/rpt09-scully/reviews-service/events","assignees_url":"https://api.github.com/repos/rpt09-scully/reviews-service/assignees{/user}","branches_url":"https://api.github.com/repos/rpt09-scully/reviews-service/branches{/branch}","tags_url":"https://api.github.com/repos/rpt09-scully/reviews-service/tags","blobs_url":"https://api.github.com/repos/rpt09-scully/reviews-service/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/rpt09-scully/reviews-service/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/rpt09-scully/reviews-service/git/refs{/sha}","trees_url":"https://api.github.com/repos/rpt09-scully/reviews-service/git/trees{/sha}","statuses_url":"https://api.github.com/repos/rpt09-scully/reviews-service/statuses/{sha}","languages_url":"https://api.github.com/repos/rpt09-scully/reviews-service/languages","stargazers_url":"https://api.github.com/repos/rpt09-scully/reviews-service/stargazers","contributors_url":"https://api.github.com/repos/rpt09-scully/reviews-service/contributors","subscribers_url":"https://api.github.com/repos/rpt09-scully/reviews-service/subscribers","subscription_url":"https://api.github.com/repos/rpt09-scully/reviews-service/subscription","commits_url":"https://api.github.com/repos/rpt09-scully/reviews-service/commits{/sha}","git_commits_url":"https://api.github.com/repos/rpt09-scully/reviews-service/git/commits{/sha}","comments_url":"https://api.github.com/repos/rpt09-scully/reviews-service/comments{/number}","issue_comment_url":"https://api.github.com/repos/rpt09-scully/reviews-service/issues/comments{/number}","contents_url":"https://api.github.com/repos/rpt09-scully/reviews-service/contents/{+path}","compare_url":"https://api.github.com/repos/rpt09-scully/reviews-service/compare/{base}...{head}","merges_url":"https://api.github.com/repos/rpt09-scully/reviews-service/merges","archive_url":"https://api.github.com/repos/rpt09-scully/reviews-service/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/rpt09-scully/reviews-service/downloads","issues_url":"https://api.github.com/repos/rpt09-scully/reviews-service/issues{/number}","pulls_url":"https://api.github.com/repos/rpt09-scully/reviews-service/pulls{/number}","milestones_url":"https://api.github.com/repos/rpt09-scully/reviews-service/milestones{/number}","notifications_url":"https://api.github.com/repos/rpt09-scully/reviews-service/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/rpt09-scully/reviews-service/labels{/name}","releases_url":"https://api.github.com/repos/rpt09-scully/reviews-service/releases{/id}","deployments_url":"https://api.github.com/repos/rpt09-scully/reviews-service/deployments","created_at":"2018-11-14T20:41:06Z","updated_at":"2018-11-15T21:51:08Z","pushed_at":"2018-11-19T22:45:01Z","git_url":"git://github.com/rpt09-scully/reviews-service.git","ssh_url":"[email protected]:rpt09-scully/reviews-service.git","clone_url":"https://github.com/rpt09-scully/reviews-service.git","svn_url":"https://github.com/rpt09-scully/reviews-service","homepage":null,"size":274,"stargazers_count":0,"watchers_count":0,"language":"JavaScript","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":1,"license":null,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/rpt09-scully/reviews-service/pulls/2"},"html":{"href":"https://github.com/rpt09-scully/reviews-service/pull/2"},"issue":{"href":"https://api.github.com/repos/rpt09-scully/reviews-service/issues/2"},"comments":{"href":"https://api.github.com/repos/rpt09-scully/reviews-service/issues/2/comments"},"review_comments":{"href":"https://api.github.com/repos/rpt09-scully/reviews-service/pulls/2/comments"},"review_comment":{"href":"https://api.github.com/repos/rpt09-scully/reviews-service/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/rpt09-scully/reviews-service/pulls/2/commits"},"statuses":{"href":"https://api.github.com/repos/rpt09-scully/reviews-service/statuses/026f08b7e164b52ed6afd7ec6bd40a966d2622a0"}},"author_association":"NONE"}} | {
"id": 157608255,
"name": "rpt09-scully/reviews-service",
"url": "https://api.github.com/repos/rpt09-scully/reviews-service"
} | {
"id": 4239492,
"login": "cjm771",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/4239492?",
"url": "https://api.github.com/users/cjm771"
} | {
"id": 44855810,
"login": "rpt09-scully",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/44855810?",
"url": "https://api.github.com/orgs/rpt09-scully"
} | 2018-11-20T00:55:06 | 8616586903 | {"actor":{"display_login":"cjm771"}} |
PullRequestReviewCommentEvent | true | {"action":"created","comment":{"url":"https://api.github.com/repos/incode-internship/react-frontend/pulls/comments/235637472","pull_request_review_id":177546659,"id":235637472,"node_id":"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDIzNTYzNzQ3Mg==","diff_hunk":"@@ -0,0 +1,118 @@\n+import React, { Component, Fragment } from 'react';\n+import PropTypes from 'prop-types';\n+import {\n+ Grid, Typography, Paper, IconButton,\n+} from '@material-ui/core';\n+import { withStyles } from '@material-ui/core/styles';\n+import SliderCard from 'components/SliderCard';\n+\n+const styles = {\n+ root: {\n+ padding: 50,\n+ },\n+ arrows: {\n+ margin: 10,\n+ },\n+ slider: {\n+ width: '100%',\n+ background: '#efefef',\n+ },\n+ sliderWrapper: {\n+ overflow: 'hidden',\n+ },\n+ sliderWrapperGrid: {\n+ position: 'relative',\n+ left: '50%',\n+ transition: 'all 0.5s ease',\n+ },\n+};\n+\n+class ProductSlider extends Component {\n+ constructor(props) {\n+ super(props);\n+ this.state = {\n+ currentInd: Math.floor(props.items.length / 2),\n+ };\n+ }\n+\n+ render() {\n+ const { classes, items } = this.props;\n+ const { currentInd } = this.state;\n+ return (\n+ <Fragment>\n+ <Grid container direction=\"column\" className={classes.root}>\n+ <Typography variant=\"h4\" gutterBottom>\n+ We've got other products for you\n+ </Typography>\n+ <Paper className={classes.paper}>\n+ <Grid\n+ container\n+ alignItems=\"center\"\n+ justify=\"space-between\"\n+ wrap=\"nowrap\"\n+ className={classes.slider}\n+ >\n+ <Grid item>\n+ <IconButton\n+ className={classes.arrows}\n+ onClick={() => {","path":"src/components/ProductsSlider/index.js","position":null,"original_position":58,"commit_id":"3c22f5090aa1119cf2252d64899b6563d49da131","original_commit_id":"ee4bc7d9ed04a194c48b2d6c2be5cf79eaf34e2e","user":{"login":"nadktk","id":41360064,"node_id":"MDQ6VXNlcjQxMzYwMDY0","avatar_url":"https://avatars3.githubusercontent.com/u/41360064?v=4","gravatar_id":"","url":"https://api.github.com/users/nadktk","html_url":"https://github.com/nadktk","followers_url":"https://api.github.com/users/nadktk/followers","following_url":"https://api.github.com/users/nadktk/following{/other_user}","gists_url":"https://api.github.com/users/nadktk/gists{/gist_id}","starred_url":"https://api.github.com/users/nadktk/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nadktk/subscriptions","organizations_url":"https://api.github.com/users/nadktk/orgs","repos_url":"https://api.github.com/users/nadktk/repos","events_url":"https://api.github.com/users/nadktk/events{/privacy}","received_events_url":"https://api.github.com/users/nadktk/received_events","type":"User","site_admin":false},"body":"ok","created_at":"2018-11-22T08:35:32Z","updated_at":"2018-11-22T08:35:32Z","html_url":"https://github.com/incode-internship/react-frontend/pull/20#discussion_r235637472","pull_request_url":"https://api.github.com/repos/incode-internship/react-frontend/pulls/20","author_association":"CONTRIBUTOR","_links":{"self":{"href":"https://api.github.com/repos/incode-internship/react-frontend/pulls/comments/235637472"},"html":{"href":"https://github.com/incode-internship/react-frontend/pull/20#discussion_r235637472"},"pull_request":{"href":"https://api.github.com/repos/incode-internship/react-frontend/pulls/20"}},"in_reply_to_id":235616289},"pull_request":{"url":"https://api.github.com/repos/incode-internship/react-frontend/pulls/20","id":232701471,"node_id":"MDExOlB1bGxSZXF1ZXN0MjMyNzAxNDcx","html_url":"https://github.com/incode-internship/react-frontend/pull/20","diff_url":"https://github.com/incode-internship/react-frontend/pull/20.diff","patch_url":"https://github.com/incode-internship/react-frontend/pull/20.patch","issue_url":"https://api.github.com/repos/incode-internship/react-frontend/issues/20","number":20,"state":"open","locked":false,"title":"Feature/recommend","user":{"login":"nadktk","id":41360064,"node_id":"MDQ6VXNlcjQxMzYwMDY0","avatar_url":"https://avatars3.githubusercontent.com/u/41360064?v=4","gravatar_id":"","url":"https://api.github.com/users/nadktk","html_url":"https://github.com/nadktk","followers_url":"https://api.github.com/users/nadktk/followers","following_url":"https://api.github.com/users/nadktk/following{/other_user}","gists_url":"https://api.github.com/users/nadktk/gists{/gist_id}","starred_url":"https://api.github.com/users/nadktk/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nadktk/subscriptions","organizations_url":"https://api.github.com/users/nadktk/orgs","repos_url":"https://api.github.com/users/nadktk/repos","events_url":"https://api.github.com/users/nadktk/events{/privacy}","received_events_url":"https://api.github.com/users/nadktk/received_events","type":"User","site_admin":false},"body":"product slider on product page","created_at":"2018-11-21T15:19:41Z","updated_at":"2018-11-22T08:35:32Z","closed_at":null,"merged_at":null,"merge_commit_sha":"b7d99fe4429e60476ccac5bc569c9fb20435e863","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"commits_url":"https://api.github.com/repos/incode-internship/react-frontend/pulls/20/commits","review_comments_url":"https://api.github.com/repos/incode-internship/react-frontend/pulls/20/comments","review_comment_url":"https://api.github.com/repos/incode-internship/react-frontend/pulls/comments{/number}","comments_url":"https://api.github.com/repos/incode-internship/react-frontend/issues/20/comments","statuses_url":"https://api.github.com/repos/incode-internship/react-frontend/statuses/3c22f5090aa1119cf2252d64899b6563d49da131","head":{"label":"incode-internship:feature/recommend","ref":"feature/recommend","sha":"3c22f5090aa1119cf2252d64899b6563d49da131","user":{"login":"incode-internship","id":44999052,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ0OTk5MDUy","avatar_url":"https://avatars0.githubusercontent.com/u/44999052?v=4","gravatar_id":"","url":"https://api.github.com/users/incode-internship","html_url":"https://github.com/incode-internship","followers_url":"https://api.github.com/users/incode-internship/followers","following_url":"https://api.github.com/users/incode-internship/following{/other_user}","gists_url":"https://api.github.com/users/incode-internship/gists{/gist_id}","starred_url":"https://api.github.com/users/incode-internship/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/incode-internship/subscriptions","organizations_url":"https://api.github.com/users/incode-internship/orgs","repos_url":"https://api.github.com/users/incode-internship/repos","events_url":"https://api.github.com/users/incode-internship/events{/privacy}","received_events_url":"https://api.github.com/users/incode-internship/received_events","type":"Organization","site_admin":false},"repo":{"id":157356712,"node_id":"MDEwOlJlcG9zaXRvcnkxNTczNTY3MTI=","name":"react-frontend","full_name":"incode-internship/react-frontend","private":false,"owner":{"login":"incode-internship","id":44999052,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ0OTk5MDUy","avatar_url":"https://avatars0.githubusercontent.com/u/44999052?v=4","gravatar_id":"","url":"https://api.github.com/users/incode-internship","html_url":"https://github.com/incode-internship","followers_url":"https://api.github.com/users/incode-internship/followers","following_url":"https://api.github.com/users/incode-internship/following{/other_user}","gists_url":"https://api.github.com/users/incode-internship/gists{/gist_id}","starred_url":"https://api.github.com/users/incode-internship/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/incode-internship/subscriptions","organizations_url":"https://api.github.com/users/incode-internship/orgs","repos_url":"https://api.github.com/users/incode-internship/repos","events_url":"https://api.github.com/users/incode-internship/events{/privacy}","received_events_url":"https://api.github.com/users/incode-internship/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/incode-internship/react-frontend","description":"Front-end simple e-commerce application","fork":false,"url":"https://api.github.com/repos/incode-internship/react-frontend","forks_url":"https://api.github.com/repos/incode-internship/react-frontend/forks","keys_url":"https://api.github.com/repos/incode-internship/react-frontend/keys{/key_id}","collaborators_url":"https://api.github.com/repos/incode-internship/react-frontend/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/incode-internship/react-frontend/teams","hooks_url":"https://api.github.com/repos/incode-internship/react-frontend/hooks","issue_events_url":"https://api.github.com/repos/incode-internship/react-frontend/issues/events{/number}","events_url":"https://api.github.com/repos/incode-internship/react-frontend/events","assignees_url":"https://api.github.com/repos/incode-internship/react-frontend/assignees{/user}","branches_url":"https://api.github.com/repos/incode-internship/react-frontend/branches{/branch}","tags_url":"https://api.github.com/repos/incode-internship/react-frontend/tags","blobs_url":"https://api.github.com/repos/incode-internship/react-frontend/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/incode-internship/react-frontend/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/incode-internship/react-frontend/git/refs{/sha}","trees_url":"https://api.github.com/repos/incode-internship/react-frontend/git/trees{/sha}","statuses_url":"https://api.github.com/repos/incode-internship/react-frontend/statuses/{sha}","languages_url":"https://api.github.com/repos/incode-internship/react-frontend/languages","stargazers_url":"https://api.github.com/repos/incode-internship/react-frontend/stargazers","contributors_url":"https://api.github.com/repos/incode-internship/react-frontend/contributors","subscribers_url":"https://api.github.com/repos/incode-internship/react-frontend/subscribers","subscription_url":"https://api.github.com/repos/incode-internship/react-frontend/subscription","commits_url":"https://api.github.com/repos/incode-internship/react-frontend/commits{/sha}","git_commits_url":"https://api.github.com/repos/incode-internship/react-frontend/git/commits{/sha}","comments_url":"https://api.github.com/repos/incode-internship/react-frontend/comments{/number}","issue_comment_url":"https://api.github.com/repos/incode-internship/react-frontend/issues/comments{/number}","contents_url":"https://api.github.com/repos/incode-internship/react-frontend/contents/{+path}","compare_url":"https://api.github.com/repos/incode-internship/react-frontend/compare/{base}...{head}","merges_url":"https://api.github.com/repos/incode-internship/react-frontend/merges","archive_url":"https://api.github.com/repos/incode-internship/react-frontend/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/incode-internship/react-frontend/downloads","issues_url":"https://api.github.com/repos/incode-internship/react-frontend/issues{/number}","pulls_url":"https://api.github.com/repos/incode-internship/react-frontend/pulls{/number}","milestones_url":"https://api.github.com/repos/incode-internship/react-frontend/milestones{/number}","notifications_url":"https://api.github.com/repos/incode-internship/react-frontend/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/incode-internship/react-frontend/labels{/name}","releases_url":"https://api.github.com/repos/incode-internship/react-frontend/releases{/id}","deployments_url":"https://api.github.com/repos/incode-internship/react-frontend/deployments","created_at":"2018-11-13T09:46:07Z","updated_at":"2018-11-21T14:54:19Z","pushed_at":"2018-11-22T08:34:37Z","git_url":"git://github.com/incode-internship/react-frontend.git","ssh_url":"[email protected]:incode-internship/react-frontend.git","clone_url":"https://github.com/incode-internship/react-frontend.git","svn_url":"https://github.com/incode-internship/react-frontend","homepage":null,"size":661,"stargazers_count":0,"watchers_count":0,"language":"JavaScript","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":2,"license":null,"forks":0,"open_issues":2,"watchers":0,"default_branch":"master"}},"base":{"label":"incode-internship:master","ref":"master","sha":"2a3e8fb781715f262689c7e6c060075150c60b20","user":{"login":"incode-internship","id":44999052,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ0OTk5MDUy","avatar_url":"https://avatars0.githubusercontent.com/u/44999052?v=4","gravatar_id":"","url":"https://api.github.com/users/incode-internship","html_url":"https://github.com/incode-internship","followers_url":"https://api.github.com/users/incode-internship/followers","following_url":"https://api.github.com/users/incode-internship/following{/other_user}","gists_url":"https://api.github.com/users/incode-internship/gists{/gist_id}","starred_url":"https://api.github.com/users/incode-internship/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/incode-internship/subscriptions","organizations_url":"https://api.github.com/users/incode-internship/orgs","repos_url":"https://api.github.com/users/incode-internship/repos","events_url":"https://api.github.com/users/incode-internship/events{/privacy}","received_events_url":"https://api.github.com/users/incode-internship/received_events","type":"Organization","site_admin":false},"repo":{"id":157356712,"node_id":"MDEwOlJlcG9zaXRvcnkxNTczNTY3MTI=","name":"react-frontend","full_name":"incode-internship/react-frontend","private":false,"owner":{"login":"incode-internship","id":44999052,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ0OTk5MDUy","avatar_url":"https://avatars0.githubusercontent.com/u/44999052?v=4","gravatar_id":"","url":"https://api.github.com/users/incode-internship","html_url":"https://github.com/incode-internship","followers_url":"https://api.github.com/users/incode-internship/followers","following_url":"https://api.github.com/users/incode-internship/following{/other_user}","gists_url":"https://api.github.com/users/incode-internship/gists{/gist_id}","starred_url":"https://api.github.com/users/incode-internship/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/incode-internship/subscriptions","organizations_url":"https://api.github.com/users/incode-internship/orgs","repos_url":"https://api.github.com/users/incode-internship/repos","events_url":"https://api.github.com/users/incode-internship/events{/privacy}","received_events_url":"https://api.github.com/users/incode-internship/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/incode-internship/react-frontend","description":"Front-end simple e-commerce application","fork":false,"url":"https://api.github.com/repos/incode-internship/react-frontend","forks_url":"https://api.github.com/repos/incode-internship/react-frontend/forks","keys_url":"https://api.github.com/repos/incode-internship/react-frontend/keys{/key_id}","collaborators_url":"https://api.github.com/repos/incode-internship/react-frontend/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/incode-internship/react-frontend/teams","hooks_url":"https://api.github.com/repos/incode-internship/react-frontend/hooks","issue_events_url":"https://api.github.com/repos/incode-internship/react-frontend/issues/events{/number}","events_url":"https://api.github.com/repos/incode-internship/react-frontend/events","assignees_url":"https://api.github.com/repos/incode-internship/react-frontend/assignees{/user}","branches_url":"https://api.github.com/repos/incode-internship/react-frontend/branches{/branch}","tags_url":"https://api.github.com/repos/incode-internship/react-frontend/tags","blobs_url":"https://api.github.com/repos/incode-internship/react-frontend/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/incode-internship/react-frontend/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/incode-internship/react-frontend/git/refs{/sha}","trees_url":"https://api.github.com/repos/incode-internship/react-frontend/git/trees{/sha}","statuses_url":"https://api.github.com/repos/incode-internship/react-frontend/statuses/{sha}","languages_url":"https://api.github.com/repos/incode-internship/react-frontend/languages","stargazers_url":"https://api.github.com/repos/incode-internship/react-frontend/stargazers","contributors_url":"https://api.github.com/repos/incode-internship/react-frontend/contributors","subscribers_url":"https://api.github.com/repos/incode-internship/react-frontend/subscribers","subscription_url":"https://api.github.com/repos/incode-internship/react-frontend/subscription","commits_url":"https://api.github.com/repos/incode-internship/react-frontend/commits{/sha}","git_commits_url":"https://api.github.com/repos/incode-internship/react-frontend/git/commits{/sha}","comments_url":"https://api.github.com/repos/incode-internship/react-frontend/comments{/number}","issue_comment_url":"https://api.github.com/repos/incode-internship/react-frontend/issues/comments{/number}","contents_url":"https://api.github.com/repos/incode-internship/react-frontend/contents/{+path}","compare_url":"https://api.github.com/repos/incode-internship/react-frontend/compare/{base}...{head}","merges_url":"https://api.github.com/repos/incode-internship/react-frontend/merges","archive_url":"https://api.github.com/repos/incode-internship/react-frontend/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/incode-internship/react-frontend/downloads","issues_url":"https://api.github.com/repos/incode-internship/react-frontend/issues{/number}","pulls_url":"https://api.github.com/repos/incode-internship/react-frontend/pulls{/number}","milestones_url":"https://api.github.com/repos/incode-internship/react-frontend/milestones{/number}","notifications_url":"https://api.github.com/repos/incode-internship/react-frontend/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/incode-internship/react-frontend/labels{/name}","releases_url":"https://api.github.com/repos/incode-internship/react-frontend/releases{/id}","deployments_url":"https://api.github.com/repos/incode-internship/react-frontend/deployments","created_at":"2018-11-13T09:46:07Z","updated_at":"2018-11-21T14:54:19Z","pushed_at":"2018-11-22T08:34:37Z","git_url":"git://github.com/incode-internship/react-frontend.git","ssh_url":"[email protected]:incode-internship/react-frontend.git","clone_url":"https://github.com/incode-internship/react-frontend.git","svn_url":"https://github.com/incode-internship/react-frontend","homepage":null,"size":661,"stargazers_count":0,"watchers_count":0,"language":"JavaScript","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":2,"license":null,"forks":0,"open_issues":2,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/incode-internship/react-frontend/pulls/20"},"html":{"href":"https://github.com/incode-internship/react-frontend/pull/20"},"issue":{"href":"https://api.github.com/repos/incode-internship/react-frontend/issues/20"},"comments":{"href":"https://api.github.com/repos/incode-internship/react-frontend/issues/20/comments"},"review_comments":{"href":"https://api.github.com/repos/incode-internship/react-frontend/pulls/20/comments"},"review_comment":{"href":"https://api.github.com/repos/incode-internship/react-frontend/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/incode-internship/react-frontend/pulls/20/commits"},"statuses":{"href":"https://api.github.com/repos/incode-internship/react-frontend/statuses/3c22f5090aa1119cf2252d64899b6563d49da131"}},"author_association":"CONTRIBUTOR"}} | {
"id": 157356712,
"name": "incode-internship/react-frontend",
"url": "https://api.github.com/repos/incode-internship/react-frontend"
} | {
"id": 41360064,
"login": "nadktk",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/41360064?",
"url": "https://api.github.com/users/nadktk"
} | {
"id": 44999052,
"login": "incode-internship",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/44999052?",
"url": "https://api.github.com/orgs/incode-internship"
} | 2018-11-22T08:35:32 | 8631676218 | {"actor":{"display_login":"nadktk"}} |
PullRequestReviewCommentEvent | true | {"action":"created","comment":{"url":"https://api.github.com/repos/gighunter/gighunter_frontend/pulls/comments/241649066","pull_request_review_id":184974288,"id":241649066,"node_id":"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDI0MTY0OTA2Ng==","diff_hunk":"@@ -1,5 +1,5 @@\n import React, { Component } from 'react';\n-import { HashRouter as Router, Route, Switch } from 'react-router-dom';","path":"src/components/app.js","position":2,"original_position":2,"commit_id":"6dcf266be608541bcc09b788cfdf3b682f22f892","original_commit_id":"6dcf266be608541bcc09b788cfdf3b682f22f892","user":{"login":"sotek222","id":36806593,"node_id":"MDQ6VXNlcjM2ODA2NTkz","avatar_url":"https://avatars3.githubusercontent.com/u/36806593?v=4","gravatar_id":"","url":"https://api.github.com/users/sotek222","html_url":"https://github.com/sotek222","followers_url":"https://api.github.com/users/sotek222/followers","following_url":"https://api.github.com/users/sotek222/following{/other_user}","gists_url":"https://api.github.com/users/sotek222/gists{/gist_id}","starred_url":"https://api.github.com/users/sotek222/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sotek222/subscriptions","organizations_url":"https://api.github.com/users/sotek222/orgs","repos_url":"https://api.github.com/users/sotek222/repos","events_url":"https://api.github.com/users/sotek222/events{/privacy}","received_events_url":"https://api.github.com/users/sotek222/received_events","type":"User","site_admin":false},"body":"HashRouter?\r\n","created_at":"2018-12-14T05:42:57Z","updated_at":"2018-12-14T05:42:57Z","html_url":"https://github.com/gighunter/gighunter_frontend/pull/12#discussion_r241649066","pull_request_url":"https://api.github.com/repos/gighunter/gighunter_frontend/pulls/12","author_association":"COLLABORATOR","_links":{"self":{"href":"https://api.github.com/repos/gighunter/gighunter_frontend/pulls/comments/241649066"},"html":{"href":"https://github.com/gighunter/gighunter_frontend/pull/12#discussion_r241649066"},"pull_request":{"href":"https://api.github.com/repos/gighunter/gighunter_frontend/pulls/12"}}},"pull_request":{"url":"https://api.github.com/repos/gighunter/gighunter_frontend/pulls/12","id":238616061,"node_id":"MDExOlB1bGxSZXF1ZXN0MjM4NjE2MDYx","html_url":"https://github.com/gighunter/gighunter_frontend/pull/12","diff_url":"https://github.com/gighunter/gighunter_frontend/pull/12.diff","patch_url":"https://github.com/gighunter/gighunter_frontend/pull/12.patch","issue_url":"https://api.github.com/repos/gighunter/gighunter_frontend/issues/12","number":12,"state":"open","locked":false,"title":"fix routes and header logo","user":{"login":"tucobenedicto","id":6601835,"node_id":"MDQ6VXNlcjY2MDE4MzU=","avatar_url":"https://avatars0.githubusercontent.com/u/6601835?v=4","gravatar_id":"","url":"https://api.github.com/users/tucobenedicto","html_url":"https://github.com/tucobenedicto","followers_url":"https://api.github.com/users/tucobenedicto/followers","following_url":"https://api.github.com/users/tucobenedicto/following{/other_user}","gists_url":"https://api.github.com/users/tucobenedicto/gists{/gist_id}","starred_url":"https://api.github.com/users/tucobenedicto/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tucobenedicto/subscriptions","organizations_url":"https://api.github.com/users/tucobenedicto/orgs","repos_url":"https://api.github.com/users/tucobenedicto/repos","events_url":"https://api.github.com/users/tucobenedicto/events{/privacy}","received_events_url":"https://api.github.com/users/tucobenedicto/received_events","type":"User","site_admin":false},"body":"Switch from hash router to browser router","created_at":"2018-12-14T05:41:32Z","updated_at":"2018-12-14T05:42:57Z","closed_at":null,"merged_at":null,"merge_commit_sha":"0ffecc1863acf3b60c5f7c4f94b4eb55d2565318","assignee":{"login":"tucobenedicto","id":6601835,"node_id":"MDQ6VXNlcjY2MDE4MzU=","avatar_url":"https://avatars0.githubusercontent.com/u/6601835?v=4","gravatar_id":"","url":"https://api.github.com/users/tucobenedicto","html_url":"https://github.com/tucobenedicto","followers_url":"https://api.github.com/users/tucobenedicto/followers","following_url":"https://api.github.com/users/tucobenedicto/following{/other_user}","gists_url":"https://api.github.com/users/tucobenedicto/gists{/gist_id}","starred_url":"https://api.github.com/users/tucobenedicto/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tucobenedicto/subscriptions","organizations_url":"https://api.github.com/users/tucobenedicto/orgs","repos_url":"https://api.github.com/users/tucobenedicto/repos","events_url":"https://api.github.com/users/tucobenedicto/events{/privacy}","received_events_url":"https://api.github.com/users/tucobenedicto/received_events","type":"User","site_admin":false},"assignees":[{"login":"tucobenedicto","id":6601835,"node_id":"MDQ6VXNlcjY2MDE4MzU=","avatar_url":"https://avatars0.githubusercontent.com/u/6601835?v=4","gravatar_id":"","url":"https://api.github.com/users/tucobenedicto","html_url":"https://github.com/tucobenedicto","followers_url":"https://api.github.com/users/tucobenedicto/followers","following_url":"https://api.github.com/users/tucobenedicto/following{/other_user}","gists_url":"https://api.github.com/users/tucobenedicto/gists{/gist_id}","starred_url":"https://api.github.com/users/tucobenedicto/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tucobenedicto/subscriptions","organizations_url":"https://api.github.com/users/tucobenedicto/orgs","repos_url":"https://api.github.com/users/tucobenedicto/repos","events_url":"https://api.github.com/users/tucobenedicto/events{/privacy}","received_events_url":"https://api.github.com/users/tucobenedicto/received_events","type":"User","site_admin":false}],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"commits_url":"https://api.github.com/repos/gighunter/gighunter_frontend/pulls/12/commits","review_comments_url":"https://api.github.com/repos/gighunter/gighunter_frontend/pulls/12/comments","review_comment_url":"https://api.github.com/repos/gighunter/gighunter_frontend/pulls/comments{/number}","comments_url":"https://api.github.com/repos/gighunter/gighunter_frontend/issues/12/comments","statuses_url":"https://api.github.com/repos/gighunter/gighunter_frontend/statuses/6dcf266be608541bcc09b788cfdf3b682f22f892","head":{"label":"gighunter:fix--routes-and-header-logo","ref":"fix--routes-and-header-logo","sha":"6dcf266be608541bcc09b788cfdf3b682f22f892","user":{"login":"gighunter","id":45504009,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ1NTA0MDA5","avatar_url":"https://avatars2.githubusercontent.com/u/45504009?v=4","gravatar_id":"","url":"https://api.github.com/users/gighunter","html_url":"https://github.com/gighunter","followers_url":"https://api.github.com/users/gighunter/followers","following_url":"https://api.github.com/users/gighunter/following{/other_user}","gists_url":"https://api.github.com/users/gighunter/gists{/gist_id}","starred_url":"https://api.github.com/users/gighunter/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gighunter/subscriptions","organizations_url":"https://api.github.com/users/gighunter/orgs","repos_url":"https://api.github.com/users/gighunter/repos","events_url":"https://api.github.com/users/gighunter/events{/privacy}","received_events_url":"https://api.github.com/users/gighunter/received_events","type":"Organization","site_admin":false},"repo":{"id":157894141,"node_id":"MDEwOlJlcG9zaXRvcnkxNTc4OTQxNDE=","name":"gighunter_frontend","full_name":"gighunter/gighunter_frontend","private":false,"owner":{"login":"gighunter","id":45504009,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ1NTA0MDA5","avatar_url":"https://avatars2.githubusercontent.com/u/45504009?v=4","gravatar_id":"","url":"https://api.github.com/users/gighunter","html_url":"https://github.com/gighunter","followers_url":"https://api.github.com/users/gighunter/followers","following_url":"https://api.github.com/users/gighunter/following{/other_user}","gists_url":"https://api.github.com/users/gighunter/gists{/gist_id}","starred_url":"https://api.github.com/users/gighunter/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gighunter/subscriptions","organizations_url":"https://api.github.com/users/gighunter/orgs","repos_url":"https://api.github.com/users/gighunter/repos","events_url":"https://api.github.com/users/gighunter/events{/privacy}","received_events_url":"https://api.github.com/users/gighunter/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/gighunter/gighunter_frontend","description":"Gighunter is a website that connects performers with paying gigs.","fork":false,"url":"https://api.github.com/repos/gighunter/gighunter_frontend","forks_url":"https://api.github.com/repos/gighunter/gighunter_frontend/forks","keys_url":"https://api.github.com/repos/gighunter/gighunter_frontend/keys{/key_id}","collaborators_url":"https://api.github.com/repos/gighunter/gighunter_frontend/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/gighunter/gighunter_frontend/teams","hooks_url":"https://api.github.com/repos/gighunter/gighunter_frontend/hooks","issue_events_url":"https://api.github.com/repos/gighunter/gighunter_frontend/issues/events{/number}","events_url":"https://api.github.com/repos/gighunter/gighunter_frontend/events","assignees_url":"https://api.github.com/repos/gighunter/gighunter_frontend/assignees{/user}","branches_url":"https://api.github.com/repos/gighunter/gighunter_frontend/branches{/branch}","tags_url":"https://api.github.com/repos/gighunter/gighunter_frontend/tags","blobs_url":"https://api.github.com/repos/gighunter/gighunter_frontend/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/gighunter/gighunter_frontend/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/gighunter/gighunter_frontend/git/refs{/sha}","trees_url":"https://api.github.com/repos/gighunter/gighunter_frontend/git/trees{/sha}","statuses_url":"https://api.github.com/repos/gighunter/gighunter_frontend/statuses/{sha}","languages_url":"https://api.github.com/repos/gighunter/gighunter_frontend/languages","stargazers_url":"https://api.github.com/repos/gighunter/gighunter_frontend/stargazers","contributors_url":"https://api.github.com/repos/gighunter/gighunter_frontend/contributors","subscribers_url":"https://api.github.com/repos/gighunter/gighunter_frontend/subscribers","subscription_url":"https://api.github.com/repos/gighunter/gighunter_frontend/subscription","commits_url":"https://api.github.com/repos/gighunter/gighunter_frontend/commits{/sha}","git_commits_url":"https://api.github.com/repos/gighunter/gighunter_frontend/git/commits{/sha}","comments_url":"https://api.github.com/repos/gighunter/gighunter_frontend/comments{/number}","issue_comment_url":"https://api.github.com/repos/gighunter/gighunter_frontend/issues/comments{/number}","contents_url":"https://api.github.com/repos/gighunter/gighunter_frontend/contents/{+path}","compare_url":"https://api.github.com/repos/gighunter/gighunter_frontend/compare/{base}...{head}","merges_url":"https://api.github.com/repos/gighunter/gighunter_frontend/merges","archive_url":"https://api.github.com/repos/gighunter/gighunter_frontend/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/gighunter/gighunter_frontend/downloads","issues_url":"https://api.github.com/repos/gighunter/gighunter_frontend/issues{/number}","pulls_url":"https://api.github.com/repos/gighunter/gighunter_frontend/pulls{/number}","milestones_url":"https://api.github.com/repos/gighunter/gighunter_frontend/milestones{/number}","notifications_url":"https://api.github.com/repos/gighunter/gighunter_frontend/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/gighunter/gighunter_frontend/labels{/name}","releases_url":"https://api.github.com/repos/gighunter/gighunter_frontend/releases{/id}","deployments_url":"https://api.github.com/repos/gighunter/gighunter_frontend/deployments","created_at":"2018-11-16T16:33:52Z","updated_at":"2018-12-14T05:36:01Z","pushed_at":"2018-12-14T05:41:33Z","git_url":"git://github.com/gighunter/gighunter_frontend.git","ssh_url":"[email protected]:gighunter/gighunter_frontend.git","clone_url":"https://github.com/gighunter/gighunter_frontend.git","svn_url":"https://github.com/gighunter/gighunter_frontend","homepage":"","size":7997,"stargazers_count":2,"watchers_count":2,"language":"JavaScript","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":1,"license":null,"forks":0,"open_issues":1,"watchers":2,"default_branch":"master"}},"base":{"label":"gighunter:master","ref":"master","sha":"f672268d9b856b93f283f798f7696a5764a464c1","user":{"login":"gighunter","id":45504009,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ1NTA0MDA5","avatar_url":"https://avatars2.githubusercontent.com/u/45504009?v=4","gravatar_id":"","url":"https://api.github.com/users/gighunter","html_url":"https://github.com/gighunter","followers_url":"https://api.github.com/users/gighunter/followers","following_url":"https://api.github.com/users/gighunter/following{/other_user}","gists_url":"https://api.github.com/users/gighunter/gists{/gist_id}","starred_url":"https://api.github.com/users/gighunter/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gighunter/subscriptions","organizations_url":"https://api.github.com/users/gighunter/orgs","repos_url":"https://api.github.com/users/gighunter/repos","events_url":"https://api.github.com/users/gighunter/events{/privacy}","received_events_url":"https://api.github.com/users/gighunter/received_events","type":"Organization","site_admin":false},"repo":{"id":157894141,"node_id":"MDEwOlJlcG9zaXRvcnkxNTc4OTQxNDE=","name":"gighunter_frontend","full_name":"gighunter/gighunter_frontend","private":false,"owner":{"login":"gighunter","id":45504009,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ1NTA0MDA5","avatar_url":"https://avatars2.githubusercontent.com/u/45504009?v=4","gravatar_id":"","url":"https://api.github.com/users/gighunter","html_url":"https://github.com/gighunter","followers_url":"https://api.github.com/users/gighunter/followers","following_url":"https://api.github.com/users/gighunter/following{/other_user}","gists_url":"https://api.github.com/users/gighunter/gists{/gist_id}","starred_url":"https://api.github.com/users/gighunter/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gighunter/subscriptions","organizations_url":"https://api.github.com/users/gighunter/orgs","repos_url":"https://api.github.com/users/gighunter/repos","events_url":"https://api.github.com/users/gighunter/events{/privacy}","received_events_url":"https://api.github.com/users/gighunter/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/gighunter/gighunter_frontend","description":"Gighunter is a website that connects performers with paying gigs.","fork":false,"url":"https://api.github.com/repos/gighunter/gighunter_frontend","forks_url":"https://api.github.com/repos/gighunter/gighunter_frontend/forks","keys_url":"https://api.github.com/repos/gighunter/gighunter_frontend/keys{/key_id}","collaborators_url":"https://api.github.com/repos/gighunter/gighunter_frontend/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/gighunter/gighunter_frontend/teams","hooks_url":"https://api.github.com/repos/gighunter/gighunter_frontend/hooks","issue_events_url":"https://api.github.com/repos/gighunter/gighunter_frontend/issues/events{/number}","events_url":"https://api.github.com/repos/gighunter/gighunter_frontend/events","assignees_url":"https://api.github.com/repos/gighunter/gighunter_frontend/assignees{/user}","branches_url":"https://api.github.com/repos/gighunter/gighunter_frontend/branches{/branch}","tags_url":"https://api.github.com/repos/gighunter/gighunter_frontend/tags","blobs_url":"https://api.github.com/repos/gighunter/gighunter_frontend/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/gighunter/gighunter_frontend/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/gighunter/gighunter_frontend/git/refs{/sha}","trees_url":"https://api.github.com/repos/gighunter/gighunter_frontend/git/trees{/sha}","statuses_url":"https://api.github.com/repos/gighunter/gighunter_frontend/statuses/{sha}","languages_url":"https://api.github.com/repos/gighunter/gighunter_frontend/languages","stargazers_url":"https://api.github.com/repos/gighunter/gighunter_frontend/stargazers","contributors_url":"https://api.github.com/repos/gighunter/gighunter_frontend/contributors","subscribers_url":"https://api.github.com/repos/gighunter/gighunter_frontend/subscribers","subscription_url":"https://api.github.com/repos/gighunter/gighunter_frontend/subscription","commits_url":"https://api.github.com/repos/gighunter/gighunter_frontend/commits{/sha}","git_commits_url":"https://api.github.com/repos/gighunter/gighunter_frontend/git/commits{/sha}","comments_url":"https://api.github.com/repos/gighunter/gighunter_frontend/comments{/number}","issue_comment_url":"https://api.github.com/repos/gighunter/gighunter_frontend/issues/comments{/number}","contents_url":"https://api.github.com/repos/gighunter/gighunter_frontend/contents/{+path}","compare_url":"https://api.github.com/repos/gighunter/gighunter_frontend/compare/{base}...{head}","merges_url":"https://api.github.com/repos/gighunter/gighunter_frontend/merges","archive_url":"https://api.github.com/repos/gighunter/gighunter_frontend/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/gighunter/gighunter_frontend/downloads","issues_url":"https://api.github.com/repos/gighunter/gighunter_frontend/issues{/number}","pulls_url":"https://api.github.com/repos/gighunter/gighunter_frontend/pulls{/number}","milestones_url":"https://api.github.com/repos/gighunter/gighunter_frontend/milestones{/number}","notifications_url":"https://api.github.com/repos/gighunter/gighunter_frontend/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/gighunter/gighunter_frontend/labels{/name}","releases_url":"https://api.github.com/repos/gighunter/gighunter_frontend/releases{/id}","deployments_url":"https://api.github.com/repos/gighunter/gighunter_frontend/deployments","created_at":"2018-11-16T16:33:52Z","updated_at":"2018-12-14T05:36:01Z","pushed_at":"2018-12-14T05:41:33Z","git_url":"git://github.com/gighunter/gighunter_frontend.git","ssh_url":"[email protected]:gighunter/gighunter_frontend.git","clone_url":"https://github.com/gighunter/gighunter_frontend.git","svn_url":"https://github.com/gighunter/gighunter_frontend","homepage":"","size":7997,"stargazers_count":2,"watchers_count":2,"language":"JavaScript","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":1,"license":null,"forks":0,"open_issues":1,"watchers":2,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/gighunter/gighunter_frontend/pulls/12"},"html":{"href":"https://github.com/gighunter/gighunter_frontend/pull/12"},"issue":{"href":"https://api.github.com/repos/gighunter/gighunter_frontend/issues/12"},"comments":{"href":"https://api.github.com/repos/gighunter/gighunter_frontend/issues/12/comments"},"review_comments":{"href":"https://api.github.com/repos/gighunter/gighunter_frontend/pulls/12/comments"},"review_comment":{"href":"https://api.github.com/repos/gighunter/gighunter_frontend/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/gighunter/gighunter_frontend/pulls/12/commits"},"statuses":{"href":"https://api.github.com/repos/gighunter/gighunter_frontend/statuses/6dcf266be608541bcc09b788cfdf3b682f22f892"}},"author_association":"COLLABORATOR"}} | {
"id": 157894141,
"name": "gighunter/gighunter_frontend",
"url": "https://api.github.com/repos/gighunter/gighunter_frontend"
} | {
"id": 36806593,
"login": "sotek222",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/36806593?",
"url": "https://api.github.com/users/sotek222"
} | {
"id": 45504009,
"login": "gighunter",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/45504009?",
"url": "https://api.github.com/orgs/gighunter"
} | 2018-12-14T05:42:57 | 8752860871 | {"actor":{"display_login":"sotek222"}} |