Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
58d512d
Team invitation (#171)
fomalhautb Aug 4, 2024
b766e4e
Allow Next.js version `latest` in package.json
N2D4 Aug 4, 2024
6011565
Fix typo
N2D4 Aug 4, 2024
52d489b
Update error message
N2D4 Aug 5, 2024
1dbf2b7
Remove unnecessary console.warn
N2D4 Aug 5, 2024
f0a5c32
Updated "edit this page" button
N2D4 Aug 5, 2024
e8221ca
Hide unsupported properties from docs
N2D4 Aug 6, 2024
ee139bf
OAuth token tests
N2D4 Aug 7, 2024
0739bca
Fix typo
N2D4 Aug 7, 2024
a45e7a9
added create user button (#173)
fomalhautb Aug 8, 2024
f1bd51a
Create SECURITY.md
N2D4 Aug 9, 2024
951c075
Export button in tables
N2D4 Aug 9, 2024
56bdde3
Export all pages of tables
N2D4 Aug 9, 2024
fe5642d
Update security policy
N2D4 Aug 9, 2024
e4541b3
Fix docs typo
N2D4 Aug 9, 2024
51ab842
More docs typos
N2D4 Aug 9, 2024
7c6f87e
Improved user creation handlers
N2D4 Aug 9, 2024
2fef40b
Fix: Improve error handling for Server API (#170)
kfahad5607 Aug 9, 2024
fccbcf1
Sign up restriction button on dashboard
N2D4 Aug 10, 2024
550472a
Fix type error
N2D4 Aug 10, 2024
fa2f8c8
TOTP 2FA endpoints
N2D4 Aug 10, 2024
e9cbf08
TOTP MFA components
N2D4 Aug 10, 2024
61a6c52
Improved description for disabling sign ups
N2D4 Aug 10, 2024
07e10b6
Merge branch 'dev' of https://github.com/stack-auth/stack into dev
fahad-netmon Aug 11, 2024
75ad15d
Merge branch 'stack-auth:dev' into dev
kfahad5607 Aug 27, 2024
aef361f
Merge branch 'stack-auth:dev' into dev
kfahad5607 Sep 12, 2024
b4e4232
Merge branch 'stack-auth:dev' into dev
kfahad5607 Sep 14, 2024
51c41c9
Removed 'selected_team_id' from create user schema
fahad-netmon Sep 14, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const usersCrudServerReadSchema = fieldSchema.yupObject({
server_metadata: fieldSchema.userServerMetadataSchema,
}).required();

export const usersCrudServerCreateSchema = usersCrudServerUpdateSchema.concat(fieldSchema.yupObject({
export const usersCrudServerCreateSchema = usersCrudServerUpdateSchema.omit(['selected_team_id']).concat(fieldSchema.yupObject({
oauth_providers: fieldSchema.yupArray(fieldSchema.yupObject({
provider_id: fieldSchema.yupString().required(),
account_id: fieldSchema.yupString().required(),
Expand Down
2 changes: 1 addition & 1 deletion 2 packages/stack-shared/src/interface/crud/users.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export const usersCrudServerReadSchema = fieldSchema.yupObject({
last_active_at_millis: fieldSchema.userLastActiveAtMillisSchema.required(),
}).required();

export const usersCrudServerCreateSchema = usersCrudServerUpdateSchema.concat(fieldSchema.yupObject({
export const usersCrudServerCreateSchema = usersCrudServerUpdateSchema.omit(['selected_team_id']).concat(fieldSchema.yupObject({
oauth_providers: fieldSchema.yupArray(fieldSchema.yupObject({
id: fieldSchema.yupString().required(),
account_id: fieldSchema.yupString().required(),
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.