Legend:
- Unmodified
- Added
- Removed
-
trunk/DNSDB.pm
r386 r387 115 115 user_edit user_create user_delete 116 116 domain_edit domain_create domain_delete 117 record_edit record_create record_delete 117 record_edit record_create record_delete record_locchg 118 118 location_edit location_create location_delete location_view 119 119 self_edit admin … … 1477 1477 p.user_create,p.user_edit,p.user_delete, 1478 1478 p.domain_create,p.domain_edit,p.domain_delete, 1479 p.record_create,p.record_edit,p.record_delete, 1479 p.record_create,p.record_edit,p.record_delete,p.record_locchg, 1480 1480 p.location_create,p.location_edit,p.location_delete,p.location_view 1481 1481 FROM permissions p … … 1505 1505 $hash->{user_create},$hash->{user_edit},$hash->{user_delete}, 1506 1506 $hash->{domain_create},$hash->{domain_edit},$hash->{domain_delete}, 1507 $hash->{record_create},$hash->{record_edit},$hash->{record_delete}, 1507 $hash->{record_create},$hash->{record_edit},$hash->{record_delete},$hash->{record_locchg}, 1508 1508 $hash->{location_create},$hash->{location_edit},$hash->{location_delete},$hash->{location_view} 1509 1509 ) = $sth->fetchrow_array; … … 2183 2183 2184 2184 ## DNSDB::getZoneLocation() 2185 # Retrieve the default locati nofor a zone.2185 # Retrieve the default location for a zone. 2186 2186 # Takes a database handle, forward/reverse flag, and zone ID 2187 2187 sub getZoneLocation { -
trunk/dns-1.0-1.2.sql
r375 r387 14 14 ADD CONSTRAINT "locations_group_id_fkey" FOREIGN KEY (group_id) REFERENCES groups(group_id); 15 15 16 ALTER TABLE permissions ADD COLUMN record_locchg boolean DEFAULT false NOT NULL; 16 17 ALTER TABLE permissions ADD COLUMN location_create boolean DEFAULT false NOT NULL; 17 18 ALTER TABLE permissions ADD COLUMN location_edit boolean DEFAULT false NOT NULL; -
trunk/dns.sql
r375 r387 134 134 record_edit boolean DEFAULT false NOT NULL, 135 135 record_delete boolean DEFAULT false NOT NULL, 136 record_locchg boolean DEFAULT false NOT NULL, 136 137 location_create boolean DEFAULT false NOT NULL, 137 138 location_edit boolean DEFAULT false NOT NULL,
Note:
See TracChangeset
for help on using the changeset viewer.