Code Monkey home page Code Monkey logo

Comments (2)

pavan541cs avatar pavan541cs commented on June 18, 2024

Is this implemented @daltonfury42 ?

from simplq-backend.

daltonfury42 avatar daltonfury42 commented on June 18, 2024

No, in the frontend side, I ended up removing cognito altogether, as it didn't make sense to maintain cognito for anonymous authentication.

So, we use google sign in alone, and for people who are not signed in, we mark them as "anonymous" and move on.

In all requests when the user has not logged in, he sends "anonymous" instead of the token, in which case he is authenticated with the user id "anonymous" without any checks. #95

What we could do is to move out ownership information into a separate table. Current:

Queue Table: (queueId, queueName, ..., ownerId)  
Token Table: (tokenId, name, contactNumber, ..., ownerId)

to:

Queue Table: (queueId, queueName, ...)  
Token Table: (tokenId, name, contactNumber, ...,)
ACL Table: (objectId, userId, Role)

This would, in future allow multiple people to manage the same queue, and we could give multiple roles to different users. (ADMIN, OWNER etc..)

But I had not made the changes as I don't think I will be taking up this feature very soon.

from simplq-backend.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.