class Profiles::SettingsUpdateSchema

Defined in:

apps/profiles/schemas/settings_update_schema.cr

Constant Summary

FIELDS_ = {"username" => {type: "string", kwargs: {max_size: 128}}, "email" => {type: "email", kwargs: {}}, "password" => {type: "string", kwargs: {max_size: 128, strip: false, required: false}}, "image_url" => {type: "url", kwargs: {required: false}}, "bio" => {type: "string", kwargs: {max_size: 10000, required: false}}} of Nil => Nil

Instance Method Summary

Instance Method Detail

def bio : String | Nil | Nil #

def bio! #

def bio? #

def current_profile : Profile | Nil #

[View source]
def current_profile=(current_profile : Profile | Nil) #

[View source]
def email : String | Nil | Nil #

def email! #

def email? #

def image_url : String | Nil | Nil #

def image_url! #

def image_url? #

def password : String | Nil | Nil #

def password! #

def password? #

def username : String | Nil | Nil #

def username! #

def username? #