Skip to content

Commit

Permalink
Google Sheets Import Settings added
Browse files Browse the repository at this point in the history
  • Loading branch information
vamcart committed Nov 13, 2019
1 parent bde2950 commit 65485b8
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/api/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@ export default class Settings {
return this.client.put(`${this.resourceUrl}/email`, data);
}

retrieveImportSettings() {
return this.client.get(`${this.resourceUrl}/import`);
}

updateImportSettings(data) {
return this.client.put(`${this.resourceUrl}/import`, data);
}

retrieveEmailTemplate(name) {
return this.client.get(`${this.resourceUrl}/email/templates/${name}`);
}
Expand Down

0 comments on commit 65485b8

Please sign in to comment.