Koha/installer/data/mysql/it-IT/necessari/userflags.sql
Jonathan Druart baea0a79d5 Bug 7976: Remove the borrow permission
The borrow permission was used but uselessly.
For instance, at the opac, the flagsrequired parameter was set to
'borrow' but the 'authnotrequired' was set also (which means no auth
required).
At the end, this permission was used at only 1 place: for the basket,
intranet side.
This can be replaced with the catalogue permission (which is used to
search).

Test plan:
1/ Confirm that you are able to show/download/sent the cart (intranet side)
with the catalogue permission.
2/ At the OPAC, you should be able to access the same pages as before
with any other permissions.

Concretely it is quite difficult to test this patch, you should have a
look at the code.

Signed-off-by: Nick Clemens <nick@quecheelibrary.org>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
2015-06-05 13:43:34 -03:00

23 lines
1.8 KiB
SQL

SET FOREIGN_KEY_CHECKS=0;
INSERT INTO `userflags` VALUES(0,'superlibrarian','Accesso a tutte le funzioni bibliotecarie',0);
INSERT INTO `userflags` VALUES(1,'circulate','Libri per la circolazione',0);
INSERT INTO `userflags` VALUES(2,'catalogue','Visualizza il catalogo (interfaccia del bibliotecario)',0);
INSERT INTO `userflags` VALUES(3,'parameters','Imposta i parametri di Koha',0);
INSERT INTO `userflags` VALUES(4,'borrowers','Aggiungi o modifica gli utenti',0);
INSERT INTO `userflags` VALUES(5,'permissions','Imposta i permessi utente',0);
INSERT INTO `userflags` VALUES(6,'reserveforothers','Prenota i libri per gli utenti',0);
INSERT INTO `userflags` VALUES(9,'editcatalogue','Modifica il catalogo (modifica i dati bibliografici e titoli)',0);
INSERT INTO `userflags` VALUES(10,'updatecharges','Aggiorna le tariffe del prestito',0);
INSERT INTO `userflags` VALUES(11,'acquisition','Gestione delle acquisizioni e dei suggerimenti d\'acquisto',0);
INSERT INTO `userflags` VALUES(12,'management','Imposta i parametri della gestione della biblioteca',0);
INSERT INTO `userflags` VALUES(13,'tools','Usa i tools (export, import, barcodes )',0);
INSERT INTO `userflags` VALUES(14,'editauthorities','autorizza la modifica delle authorities',0);
INSERT INTO `userflags` VALUES(15,'serials','autorizza la gestione degli abbonamenti ai periodici',0);
INSERT INTO `userflags` VALUES(16,'reports','autorizza accesso al modulo dei reports',0);
INSERT INTO `userflags` VALUES(17,'staffaccess','modifica la login o i permessi degli staff users',0);
INSERT INTO `userflags` VALUES(18,'coursereserves','Modulo \'Testi per i corsi\'',0);
INSERT INTO `userflags` VALUES(19, 'plugins', 'Gestisci i plugins di Koha', '0');
INSERT INTO `userflags` VALUES(20,'lists', 'Lists', '0');
SET FOREIGN_KEY_CHECKS=1;