This commit is contained in:
Michael Hoennig 2024-09-15 19:25:22 +02:00
parent f9f5c2111f
commit faca4196e4
7 changed files with 7 additions and 6 deletions

View File

@ -28,7 +28,7 @@ commit;
set hsadminng.tx_history_txid to '';
set hsadminng.tx_history_timestamp to '2024-08-29 12:42';
-- all versions
select tx_history_txid(), txc.txtimestamp, txc.currentSubject, txc.currentTask, haex.*
select base.tx_history_txid(), txc.txtimestamp, txc.currentSubject, txc.currentTask, haex.*
from hs_hosting_asset_ex haex
join base.tx_context txc on haex.txid=txc.txid
where haex.identifier = 'test@thi.example.org';

View File

@ -33,7 +33,7 @@ $$
userId uuid;
result bool;
BEGIN
userId = findRbacSubject('superuser-alex@hostsharing.net');
userId = rbac.findRbacSubject('superuser-alex@hostsharing.net');
result = (SELECT * FROM rbac.isPermissionGrantedToSubject(rbac.findPermissionId('package', 94928, 'add-package'), userId));
IF (result) THEN
RAISE EXCEPTION 'expected permission NOT to be granted, but it is';

View File

@ -4,5 +4,5 @@
-- ============================================================================
--changeset base-SCHEMA:1 endDelimiter:--//
-- ----------------------------------------------------------------------------
CREATE SCHEMA IF NOT EXISTS base;
CREATE SCHEMA base;
--//

View File

@ -127,6 +127,7 @@ begin
end; $$;
--//
-- ============================================================================
--changeset context-base.ASSUMED-ROLES:1 endDelimiter:--//
-- ----------------------------------------------------------------------------

View File

@ -4,5 +4,5 @@
-- ============================================================================
--changeset rbac-SCHEMA:1 endDelimiter:--//
-- ----------------------------------------------------------------------------
CREATE SCHEMA IF NOT EXISTS rbac;
CREATE SCHEMA rbac;
--//

View File

@ -168,7 +168,7 @@ $$;
-- ============================================================================
--changeset rbac-global-TEST:1 context:dev,tc runAlways:true endDelimiter:--//
--changeset rbac-global-TEST:1 context:dev,tc endDelimiter:--//
-- ----------------------------------------------------------------------------
/*

View File

@ -4,5 +4,5 @@
-- ============================================================================
--changeset test-SCHEMA:1 endDelimiter:--//
-- ----------------------------------------------------------------------------
CREATE SCHEMA IF NOT EXISTS test;
CREATE SCHEMA test;
--//