Lines 105-110
can others change contents?
Link Here
|
105 |
|
105 |
|
106 |
can staff change contents? |
106 |
can staff change contents? |
107 |
|
107 |
|
|
|
108 |
=head2 allow_change_from_permitted_staff |
109 |
|
110 |
data_type: 'tinyint' |
111 |
default_value: 0 |
112 |
is_nullable: 1 |
113 |
|
114 |
can staff with edit_public_list_contents permission change contents? |
115 |
|
108 |
=cut |
116 |
=cut |
109 |
|
117 |
|
110 |
__PACKAGE__->add_columns( |
118 |
__PACKAGE__->add_columns( |
Lines 142-147
__PACKAGE__->add_columns(
Link Here
|
142 |
{ data_type => "tinyint", default_value => 0, is_nullable => 1 }, |
150 |
{ data_type => "tinyint", default_value => 0, is_nullable => 1 }, |
143 |
"allow_change_from_staff", |
151 |
"allow_change_from_staff", |
144 |
{ data_type => "tinyint", default_value => 0, is_nullable => 1 }, |
152 |
{ data_type => "tinyint", default_value => 0, is_nullable => 1 }, |
|
|
153 |
"allow_change_from_permitted_staff", |
154 |
{ data_type => "tinyint", default_value => 0, is_nullable => 1 }, |
145 |
); |
155 |
); |
146 |
|
156 |
|
147 |
=head1 PRIMARY KEY |
157 |
=head1 PRIMARY KEY |
Lines 209-216
__PACKAGE__->has_many(
Link Here
|
209 |
); |
219 |
); |
210 |
|
220 |
|
211 |
|
221 |
|
212 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-04-12 10:03:27 |
222 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-08-17 19:59:33 |
213 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:dzF83u6fWMs2YRrG2yBD8w |
223 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:EKq7nDW2AeZ2NQce2BPMWA |
214 |
|
224 |
|
215 |
sub koha_object_class { |
225 |
sub koha_object_class { |
216 |
'Koha::Virtualshelf'; |
226 |
'Koha::Virtualshelf'; |
217 |
- |
|
|