laminas-api-tools / api-tools-admin-ui

Laminas API Tools Admin UI module
https://api-tools.getlaminas.org/documentation
BSD 3-Clause "New" or "Revised" License
6 stars 11 forks source link

Code Connected REST Services Not Creating #13

Open weierophinney opened 4 years ago

weierophinney commented 4 years ago

I'm not sure if this is an issue with my particular installation of apigility admin ui or not, but I have the following versions of modules installed:

zfcampus/zf-apigility-admin-ui 1.2.1 zfcampus/zf-apigility-admin 1.3.2

I ran into an issue where trying to add a Code Connected Service, I was getting an error that I wasn't providing a service name. I tracked it to the service manager using the same instance of the input filter for all three inputs (table_name, adapter_name, service_name). I worked around it by adding the following to module.config.php:

'di' => array(
    'instance' => array(
        'Zend\InputFilter\Input' => array(
            'shared' => false
        )
    )
),

But like I said, it could be an issue with my setup.


Originally posted by @jpohlmann at https://github.com/zfcampus/zf-apigility-admin-ui/issues/89

weierophinney commented 4 years ago

If you can, please try again with the latest releases of the admin and admin-ui (admin is in the 1.5 series, UI is now in the 1.3 series), and let us know if you still observe the issue; I'm unable to reproduce it currently.


Originally posted by @weierophinney at https://github.com/zfcampus/zf-apigility-admin-ui/issues/89#issuecomment-239672463