-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rechte Ausrichter DSBMitglied, add Permission Spotter-Interface (Liga…
…leiter, Ausrichter) im Backend
- Loading branch information
Sarah Keifer
committed
Jan 22, 2025
1 parent
974c8c4
commit c3ff9f5
Showing
2 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
...tion/src/main/resources/db/migration/all/V21_0__update_DSB_Mitglied_Spotter_interface.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* | ||
Add Role Can create DSB-Mitglied for Ausrichter for their own Veranstaltung | ||
*/ | ||
/* Ausrichter, DSB-Mitglied anlegen und DSB-Mitglied bearbeiten für seinen eigenen Verein*/ | ||
INSERT INTO rolle_recht(rolle_recht_rolle_id, | ||
rolle_recht_recht_id) | ||
VALUES (4, 26); | ||
INSERT INTO rolle_recht(rolle_recht_rolle_id, | ||
rolle_recht_recht_id) | ||
VALUES (4, 27); | ||
|
||
/* (Admin), Ligaleiter, Ausrichter brauchen die Berechtigung für das Spotter-Interface */ | ||
INSERT INTO rolle_recht(rolle_recht_rolle_id, | ||
rolle_recht_recht_id) | ||
VALUES (2, 17); | ||
INSERT INTO rolle_recht(rolle_recht_rolle_id, | ||
rolle_recht_recht_id) | ||
VALUES (4, 17); |