1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-08 21:10:05 +00:00

chore(*): add .prettierrc, fix formatting

This commit is contained in:
Krishna Acondy
2020-08-31 09:15:02 +01:00
parent 688221c042
commit 929d7b993b
20 changed files with 225 additions and 209 deletions

View File

@@ -10,7 +10,7 @@ export class SAS9ApiClient {
*/
public getConfig() {
return {
serverUrl: this.serverUrl,
serverUrl: this.serverUrl
};
}
@@ -37,9 +37,9 @@ export class SAS9ApiClient {
const executeScriptRequest = {
method: "PUT",
headers: {
Accept: "application/json",
Accept: "application/json"
},
body: `command=${requestPayload}`,
body: `command=${requestPayload}`
};
const executeScriptResponse = await fetch(
`${this.serverUrl}/sas/servers/${serverName}/cmd?repositoryName=${repositoryName}`,