X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=sql%2FPg-upgrade2-auth%2Fwebshop_api_rights.pl;h=b62b3fe228313523bb87c724a4dd31bc2e5e8912;hb=11aeaa07186197c61dfe610d2a5c981754fd2e9d;hp=130b054c1bc49454bcb191bd0eac04a1a93fa531;hpb=e18af94c0dc72def3629a352dbf048baa0dfd72d;p=kivitendo-erp.git diff --git a/sql/Pg-upgrade2-auth/webshop_api_rights.pl b/sql/Pg-upgrade2-auth/webshop_api_rights.pl index 130b054c1..b62b3fe22 100644 --- a/sql/Pg-upgrade2-auth/webshop_api_rights.pl +++ b/sql/Pg-upgrade2-auth/webshop_api_rights.pl @@ -1,25 +1,24 @@ # @tag: webshop_api_rights # @description: Setzt die Rechte Shopconfig, Shopbestellungen, Shopartikel, per Default erlaubt # @depends: release_3_5_0 -# @locales: create and edit shopparts -# @locales: get shoporders -# @locales: create and edit webshops - -package sl::dbupgrade2::auth::webshop_api_rights; +# @locales: Create and edit shopparts +# @locales: Get shoporders +# @locales: Create and edit webshops +package SL::DBUpgrade2::Auth::webshop_api_rights; use strict; use utf8; -use parent qw(sl::dbupgrade2::base); +use parent qw(SL::DBUpgrade2::Base); -use sl::dbutils; +use SL::DBUtils; sub run { my ($self) = @_; - $self->db_query("insert into auth.master_rights (position, name, description) values ( 550, 'shop_part_edit', 'create and edit shopparts')"); - $self->db_query("insert into auth.master_rights (position, name, description) values ( 950, 'shop_order', 'get shoporders')"); - $self->db_query("insert into auth.master_rights (position, name, description) values ( 4300, 'edit_shop_config', 'create and edit webshops')"); + $self->db_query("INSERT INTO auth.master_rights (position, name, description) VALUES ( 550, 'shop_part_edit', 'Create and edit shopparts')"); + $self->db_query("INSERT INTO auth.master_rights (position, name, description) VALUES ( 950, 'shop_order', 'Get shoporders')"); + $self->db_query("INSERT INTO auth.master_rights (position, name, description) VALUES ( 4300, 'edit_shop_config', 'Create and edit webshops')"); my $groups = $main::auth->read_groups();