1
0

HsOfficePartnerControllerAcceptanceTest against real repo+db

This commit is contained in:
Michael Hoennig
2022-09-14 09:24:19 +02:00
parent bc27e6dc89
commit a3d2dd3db1
5 changed files with 223 additions and 97 deletions

View File

@ -45,7 +45,7 @@ end; $$;
Creates the roles and their assignments for a new contact for the AFTER INSERT TRIGGER.
*/
create or replace function createRbacRolesForhsOfficeContact()
create or replace function createRbacRolesForHsOfficeContact()
returns trigger
language plpgsql
strict as $$
@ -88,11 +88,11 @@ end; $$;
An AFTER INSERT TRIGGER which creates the role structure for a new customer.
*/
create trigger createRbacRolesForhsOfficeContact_Trigger
create trigger createRbacRolesForHsOfficeContact_Trigger
after insert
on hs_office_contact
for each row
execute procedure createRbacRolesForhsOfficeContact();
execute procedure createRbacRolesForHsOfficeContact();
--//