@eigenwijsje@kmohrf I'm not totally sure, if some rigid database structure is the right approach to store settings. Especially considering this will grow a lot overtime and be consumed by clients most likely in a "all or nothing" manner (compare the last paragraph in the ticket description above).
At least the API response should probably a single JSON map, holding all settings at once.
So I'd be thankful if you both could do some exchange, on some future-proof approach and decide for yourself. Konrad, I'm thinking about your personal experience with the Tekno PWA and how you would design such global settings container API.
If the API should only support reading all the values at once, as JSON, then we can add them as settings, and expose them through a view.
Alternatively, we could put all these settings in a JSON file and just serve it. I would advice against this, because it splits the settings to two locations.
But, if the API should also support creating, updating and deleting, then we will need a model.
I'd also vote for storing settings in the database. And yes, they need to be written too.
The only question left, how we structure the model: more hard-wired (table for each config options; seems not so sensible to me) vs. dynamic (like a key-value store plus JSON schema validations on the values for example).