| Total Complexity | 1 |
| Total Lines | 11 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | from nextcloud.base import WithRequester |
||
| 2 | |||
| 3 | |||
| 4 | class Capabilities(WithRequester): |
||
| 5 | API_URL = "/ocs/v1.php/cloud/capabilities" |
||
| 6 | SUCCESS_CODE = 100 |
||
| 7 | |||
| 8 | def get_capabilities(self): |
||
| 9 | """ Obtain capabilities provided by the Nextcloud server and its apps """ |
||
| 10 | return self.requester.get() |
||
| 11 |