(self, ssoChar, endpoint, **kwargs)
| 312 | return self._after_request(self._session.post("{}{}?datasource={}".format(self.esi_url, endpoint, self.server_name.lower()), data=json)) |
| 313 | |
| 314 | def delete(self, ssoChar, endpoint, **kwargs): |
| 315 | self._before_request(ssoChar) |
| 316 | endpoint = endpoint.format(**kwargs) |
| 317 | return self._after_request(self._session.delete("{}{}?datasource={}".format(self.esi_url, endpoint, self.server_name.lower()))) |
| 318 | |
| 319 | # todo: move these off to another class which extends this one. This class should only handle the low level |
| 320 | # authentication and |
no test coverage detected