https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38204
Jonathan Druart <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #8 from Jonathan Druart <[email protected]> --- 1. Why do you make the basket's name not null? name: - type: string + type: + - string + - "null" It can be NULL at DB level, but the UI is enforcing it. I think we should keep the constraint at the REST API level. 2. create_items: - type: string + type: + - string + - "null" Same, why allowing null here? 3. - authorised_by: + creator_id: It has been there for a while now, isn't it a problem to modify it, especially without advertising it. There may be existing consumers. -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
