From 5b27800c46c6f1f69a323d3c4087d078b96d3a49 Mon Sep 17 00:00:00 2001 From: Todd Martin <106564991+trmartin4@users.noreply.github.com> Date: Wed, 24 May 2023 16:26:29 -0400 Subject: [PATCH] Added RBAC to example JSON. (#2951) --- dev/secrets.json.example | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/dev/secrets.json.example b/dev/secrets.json.example index c6e8dcdecd..5c9f901e2e 100644 --- a/dev/secrets.json.example +++ b/dev/secrets.json.example @@ -1,6 +1,13 @@ { "adminSettings": { - "admins": "admin@localhost" + "admins": "admin@localhost,owner@localhost,cs@localhost,billing@localhost,sales@localhost", + "role": { + "owner": "owner@localhost", + "admin": "admin@localhost", + "cs": "cs@localhost", + "billing": "billing@localhost", + "sales": "sales@localhost" + } }, "globalSettings": { "selfHosted": true,