Skip to content

Commit

Permalink
chore: code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
libterty committed Dec 23, 2020
1 parent d4a1c8e commit 357284a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/gateways/gateway.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export class GatewayService {
method: 'GET',
headers: {
'service-name': service.name,
'Authorization': serviceToken,
Authorization: serviceToken,
},
json: true,
});
Expand Down Expand Up @@ -132,7 +132,7 @@ export class GatewayService {
method: 'POST',
headers: {
'service-name': service.name,
'Authorization': serviceToken,
Authorization: serviceToken,
},
body: req.body,
json: true,
Expand Down Expand Up @@ -207,7 +207,7 @@ export class GatewayService {
method: 'PUT',
headers: {
'service-name': service.name,
'Authorization': serviceToken,
Authorization: serviceToken,
},
body: req.body,
json: true,
Expand Down Expand Up @@ -282,7 +282,7 @@ export class GatewayService {
method: 'DELETE',
headers: {
'service-name': service.name,
'Authorization': serviceToken,
Authorization: serviceToken,
},
json: true,
});
Expand Down

0 comments on commit 357284a

Please sign in to comment.