littleredbutton / cloud_bbb

@bigbluebutton integration for @nextcloud
GNU Affero General Public License v3.0
103 stars 42 forks source link

Expose the app version to the capabilities endpoint #288

Closed ThibautPlg closed 2 weeks ago

ThibautPlg commented 1 month ago

Hello, Could it be possible to expose the app version through the capabilities endpoint? This is useful when managing multiple Nextcloud to monitor and report the app version. Many other Nextcloud Apps are already exposing this data (circles, richdocuments, deck to name a few)

Example:

curl --request GET \
  --url https://user:password@mycloud.localnet.com/ocs/v2.php/cloud/capabilities \
  --header 'OCS-APIRequest: true'

would return

        "bbb": {
          "appVersion": "2.7.0"
        },

See : https://github.com/nextcloud/groupfolders/pull/2861/files

Best regards,

sualko commented 1 month ago

@ThibautPlg can you create a pull request for this feature?

ThibautPlg commented 1 month ago

I haven't developed it, it's only a feature request at the moment.