| Total Complexity | 1 |
| Total Lines | 10 |
| 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 | |||
| 7 | def get_capabilities(self): |
||
| 8 | """ Obtain capabilities provided by the Nextcloud server and its apps """ |
||
| 9 | return self.requester.get() |
||
| 10 |