https://github.com/libresign/woocommerce-nextcloud-admin-group-manager
It callls the LibreSign API
https://github.com/libresign/woocommerce-nextcloud-admin-group-manager
Last synced: about 1 month ago
JSON representation
It callls the LibreSign API
- Host: GitHub
- URL: https://github.com/libresign/woocommerce-nextcloud-admin-group-manager
- Owner: LibreSign
- Created: 2024-10-07T20:18:20.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2026-06-01T20:34:50.000Z (about 2 months ago)
- Last Synced: 2026-06-01T22:21:14.162Z (about 2 months ago)
- Language: PHP
- Size: 52.7 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Integrate WooCommerce to Nextcloud plugin admin_group_manager
Send requests from WooCommerce to endpoints of plugin [admin_group_manager](https://github.com/LibreSign/admin_group_manager/).
## Configuring product
### Adding attributes
Will be necessary add two attributes, quota and apps. Quota will be send to API as string and apps will be send as array.
To send the value of an attribute to API, the `Name` need to follow the pattern:
```regex
^nextcloud-(?string|list)-(?.+)
```
And the value, if type is array, will be separated by |.
Example:
```gherkin
scenario:
When Go to "Producs"
And Edit the product that you want to integrate to Nextcloud
And Click at "Attributes"
And Click at "Add new"
And Fill "nextcloud-string-quota" at field "Name:"
# The size here need to be the same of other visible attribute that will be displayed to user
And Fill "1Gb" at field "Value(s):"
And Uncheck the field "Visible on the product page"
And Click at "Add new"
And Fill "nextcloud-list-apps" at field "Name:"
And Fill "libresign|deck" at field "Value(s):"
And Uncheck the field "Visible on the product page"
Then Click at "Save attributes"
```