Skip to content

Commit

Permalink
Merge pull request #13 from Omegapoint/feature/NewTesterTest3
Browse files Browse the repository at this point in the history
refactor project
  • Loading branch information
jonathanbokvad authored Sep 28, 2023
2 parents 2ef8253 + 1ad334d commit c77f8ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/branchprotection/BranchProtectionService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ export class BranchProtectionService {
branch: 'main',
})
.then((response: any) => {
console.log('only response', response);
console.log('Data without json()', response.data.required_approving_review_count);
console.log('response data ', response.data);
console.log('getting review count ', response.data['required_approving_review_count']);
console.log('only response with json()', response.json());
const data: any = response.json();
console.log(
Expand Down

0 comments on commit c77f8ab

Please sign in to comment.