From 6eefe5831f4c4359808773f0b74ef77e974e27c1 Mon Sep 17 00:00:00 2001 From: Gabe Mukobi Date: Wed, 7 Aug 2019 16:58:51 -0700 Subject: [PATCH] Add is_organizer instructions --- users/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/users/README.md b/users/README.md index 9e95af7..c781d60 100644 --- a/users/README.md +++ b/users/README.md @@ -30,6 +30,8 @@ Set up [Google Sign-In for Websites](https://developers.google.com/identity/sign export GAUTH_CLIENT_ID="123-my-google-oauth-service-client-id-456" ``` +After you have deployed both the users service and the pageserve service, you will need to mark users as organizers in the database for them to be authorized to create events. To do this, after a given user signs in from pageserve such that the users service inserts them into the database, find the user in the `users_collection` through your MongoDB explorer and set their `is_organizer` field to `true`. + ### Running, Testing, and Deploying The procedures for running, testing, and deploying a microservice are the same for all of the microservices. See [the master README.md](../README.md).