How do you get the user's email address when using Google login?
After upgrading to Wasp 0.13 it seems I can't get the User's email address anymore?
The
getEmail
function returns null
, as I'm using Google login ot authenticate the user.
How can I get the user's email address when using social login?...Is the isEmailAutoVerified boolean accessible/usable/exposed?
Seen here: https://github.com/wasp-lang/wasp/blob/246ae9c7824002d92a17dcf2f027e6f86d0c8cea/waspc/data/Generator/templates/server/src/auth/providers/email/signup.ts#L35C2-L35C34
I saw it used for the SKIP_EMAIL_VERIFICATION_IN_DEV flag but not sure if it's exposed for main.wasp use. Thanks!...
Get unique userID via wasp or auth0?
Hello i am wondering if there is a way to get a unique ID of some sort for every user. I managed to print out the user reg ID, which starts from 1 (the first member) etc. But im thinkin more of a "random code" simular to the "sub id" which you can get from regular auth0 app.
Anyone use railway for deployment
I want to deploy in railway and I don't know how to start. because the db and the frontend and backend all in wasp, it make me confus.
API Authentication
Is there a good example of how to add an api endpoint for authentication? I'm primarily using username and password for now but eventually I'd like make use of all the authentication methods provided by wasp, but through an api.
Accessing API endpoing from postman
After following the API tutorial, I attempted to post a GET request to http://localhost:3000/foo/bar and the response is just the web-app/index.html file.
When following the tutorial example of using the api from the client, I successfully get my data:
import React, { useEffect } from "react";...
can i use wasp for big production apps?
I need to know how reliable is using wasp for my big client projects that could have 1M users or more and need to be fullt maintainable with high availability %
websocket definition?
I've been trying to follow along with https://wasp-lang.dev/blog/2023/08/09/build-real-time-voting-app-websockets-react-typescript and https://wasp-lang.dev/docs/advanced/web-sockets to get websockets working with the open-saas demo app template.
When I attempt to use
```...
Disable Email Verification in Production
Hi folks, love the framework! Was wondering if there's a way to disable email verification? To clarify, email/password login is good, just don't want/need users to go through email verification (for now).
Equally, any idea how to get rid of this alert on sign up? Thanks!...
Best Solution to Automate Workflows
I definitely need advice.
Im beginning to automate workflows in businesses (connecting APIs with an LLM on top) Im about to start developing for clients.
I had always used make .com before because it’s easy to connect APIs together. ...
New user fields not recognized
I'm attempting to add some attributes to my user entity that have a relation to other entity attributes.
```
entity User {=psl
id Int @id @default(autoincrement())...
React Native Integration
My SAAS app will have a mobile version. I'm using the dummy starter project for the web app, but when the time comes, I'll need to be able to do crud operations from my react native app. I know open-saas has a lot under the hood that makes web app development faster, but can I leverage any of this for my react-native app? I'm worried about how I might connect the mobile app to this one.
adding node packages
Are there any special considerations when adding node packages to the dummy app starter template? Do I just wrong the npm install cli command and I’m good or is there more that I need to do? Asking before I make a mess lol.
New Wasp Entity Attributes Not included in CreateEntityName function
I have an Entity that I've added new attributes to. I've done this several times without any issues. But now, I've added a few attributes and i've run the command to refresh the db. But when I attempt to use the createEntityName function elsewhere, my new attributes aren't allowed as arguments.
Action expecting two arguments, but context is not passed
This might be a slight misunderstanding from my side about how actions work, but after defining a new action and attempting to call it in the client (it's a create action), it throws an error expecting a second argument (context), but in the examples and elsewhere in the opensaas code I can only see one argument being passed.
Cleaned up version of opensaas
Hey, im looking to using opensaas but i dont want any of the features, AI scheduler, tasks etc, do i just delete from the main.wasp file?
Type error: Undefined identifier: Dummy (On Wasp Start)
Hello im trying to install latest version and get this error?
Broke wasp db studio after migrating from Wasp 0.11 to 0.13
Hi 👋
Wasp db studio seems to break after migrating from Wasp 0.11 to 0.13. I've followed the guide as outlined in the documentation, so I've first upgraded to 0.12 and afterwards to 0.13.
However, when I now try to run
wasp db studio
I'm getting following error:...