Skip to content

Commit

Permalink
fixed broken link
Browse files Browse the repository at this point in the history
  • Loading branch information
ashleysmithTTD committed Nov 5, 2024
1 parent 4981e13 commit 1dbdf8a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ The following steps describe the minimal steps required to successfully log in t

1. Assign yourself the `api-participant-member` role by following these steps: [Assign Role to a Particular User](./KeycloakAdvancedSetup.md#assign-role-to-a-particular-user)
1. Run the Admin service locally by following [Connecting to local Admin service](#connecting-to-local-admin-service)
1. Optionally give your user access to the [Admin screens/routes](#admin-screensroutes)
1. Optionally give your user access to the [UID2 Support Screens/Routes](#uid2-support-screensroutes)
1. Return to the UI and you should be good to go!

#### Notes for Mac OSX Development:
Expand All @@ -299,15 +299,16 @@ The following steps describe the minimal steps required to successfully log in t

### UID2 Support Screens/Routes

Certain screens/routes are only able to view with the UID2 support role, such as the Manage Participants screen. Run the following to assign yourself the UID2 support role:
Certain screens/routes are only viewable with the UID2 support role, such as the screen to manage participants. Run the following to assign yourself the UID2 support role:

```
use [uid2_selfserve]
declare @email as nvarchar(256) = '[email protected]';
declare @uid2SupportRoleId as int = 3;
insert into dbo.usersToParticipantRoles (userId, participantId, userRoleId)
select u.id, upr.participantId, 3
select u.id, upr.participantId, @uid2SupportRoleId
from dbo.users u
join dbo.usersToParticipantRoles upr on u.id = upr.userId
where u.email = @email;
Expand Down

0 comments on commit 1dbdf8a

Please sign in to comment.