[Koha-bugs] [Bug 33606] Access to ERM requires parameters => 'manage_sysprefs'

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Fri May 12 13:17:56 CEST 2023


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33606

--- Comment #10 from Martin Renvoize <martin.renvoize at ptfs-europe.com> ---
How about

`/configurations` or `/settings` that returns an array of key:value pair
objects...

[
  { 'ERMModule': true },
  { 'ERMProviders': [ 'A', 'B', 'C' ] }
]

and we could allow searching on key..

Or perhaps

[
  {
    id: 'ERMModule',
    value: true
  }
  {
    id: 'ERMProviders',
    value: [ 'A', 'B', 'C' ]
  }
]

What's going to be easiest to use from code whilst also being easy to filter in
the API?

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list