limosa-io / laravel-scim-server

SCIM 2.0 Server implementation for Laravel
MIT License
47 stars 28 forks source link

Fix for ResourceType->getQuery when query is not set in config #35

Closed jon-harald closed 1 year ago

jon-harald commented 1 year ago

Fixed resource default query when not set in config. Arr::get() only provides default value when key doesn't exist in array, not when the keys value is null.

Resource queries fails without this fix if query is not explicitly set in config. Caused by #32

arietimmerman commented 1 year ago

Thanks!