We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a14e54 commit 153e83aCopy full SHA for 153e83a
app/routes/api.ts
@@ -74,6 +74,7 @@ const routes: { noauth: RouteInfo[]; auth: RouteInfo[] } = {
74
{
75
path: `users/register`,
76
method: 'POST',
77
+ deprecationNotice: 'Use a POST to users/ instead',
78
},
79
80
path: `users/request-password-reset`,
@@ -91,6 +92,10 @@ const routes: { noauth: RouteInfo[]; auth: RouteInfo[] } = {
91
92
path: `users/sign-in`,
93
94
95
+ {
96
+ path: `users`,
97
+ method: 'POST',
98
+ },
99
],
100
auth: [
101
0 commit comments