Documentation Index
Fetch the complete documentation index at: https://mintlify.com/ephraimduncan/minimal.so/llms.txt
Use this file to discover all available pages before exploring further.
Endpoint
true if the username is available or already belongs to the authenticated user.
Authentication
Requires authentication via session cookie.Request
Response
true if the username is available or belongs to the current user, false if taken by another userExample
Schema
Notes
- Username is automatically converted to lowercase before checking
- Returns
trueif the username belongs to the authenticated user (useful for validation during profile updates) - Username must pass validation rules (no reserved words, valid format)
Source
- Schema:
lib/schema.ts:16 - Implementation:
server/procedures/profile.ts:65 - Router:
server/router.ts:47