Skip to content

Thunderducky/my-blog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

my-blog

cd client yarn start

in another tab

node server.js

//Add a Rule in your Auth0 similar to the following
function (user, context, callback) {
  if(user.email === "<your-email>"){
    context.accessToken.scope = ["openid", "profile", "read:blog", "write:blog"];
  } else {
     context.accessToken.scope = ["openid", "profile", "read:blog"]; 
  }
  callback(null, user, context);
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published