os-js / osjs-client

OS.js Client Module
https://manual.os-js.org/
Other
31 stars 31 forks source link

Added config option to hide packages via user groups (#140) #141

Closed andersevenrud closed 3 years ago

andersevenrud commented 3 years ago

The following configuration entry is now available:

{
  packages: {
    permissions: {
      PackageName: {
        // Set to true to match *all* groups instead of *some*
        strictGroups: false,
        groups: ['a', 'b', 'c']
      }
    }
  }
}