Explorar el Código

auth token fixes

Ivan Asmer hace 5 años
padre
commit
c2b5c842e8
Se han modificado 1 ficheros con 7 adiciones y 7 borrados
  1. 7 7
      index.js

+ 7 - 7
index.js

@@ -9,11 +9,11 @@ const anonResolvers = ['login', 'createUser'];
     const {Savable, slice, getModels} = await require('./models.js')('cb')
 
     class User extends Savable {
-        static get relations(){
-            return {
-                events: "users"
-            }
-        }
+        //static get relations(){
+            //return {
+                //events: "users"
+            //}
+        //}
     }
     Savable.addClass(User)
 
@@ -204,14 +204,14 @@ const anonResolvers = ['login', 'createUser'];
     }
 
     app.use('/graphql', express_graphql(async (req, res, gql) => { 
-        if (gql.operationName === null || anonResolvers.includes(gql.operationName))
+        const authorization = req.headers.authorization 
+        if (!authorization && (gql.operationName === null || anonResolvers.includes(gql.operationName)))
             return {
                 schema: schema,
                 rootValue: rootResolvers,
                 graphiql: true, 
             }
         
-        const authorization = req.headers.authorization 
         if (authorization && authorization.startsWith('Bearer ')){
             console.log('token provided')
             const token = authorization.substr("Bearer ".length)