Sha256: 1317f0fcbf095ef21692b226bb86ab8b4f3360410e3cd9519576671c3281a1c4
Contents?: true
Size: 1.96 KB
Versions: 4
Compression:
Stored size: 1.96 KB
Contents
= Documentation for Create Account Feature The create account feature allows users to create new accounts. == Auth Value Methods create_account_additional_form_tags :: HTML fragment containing additional form tags to use on the create account form. create_account_button :: The text to use for the create account button. create_account_error_flash :: The flash error to show for unsuccessful account creation. create_account_notice_flash :: The flash notice to show after successful account creation. create_account_page_title :: The page title to use on the create account form. create_account_redirect :: Where to redirect after creating the account. create_account_route :: The route to the create account action. Defaults to +create-account+. create_account_set_password? :: Whether to ask for a password to be set on the create account form. Defaults to true if not verifying accounts. If set to false, an alternative method to set the password should be used (assuming you want to allow password authentication). == Auth Methods after_create_account :: Run arbitrary code after creating the account. before_create_account :: Run arbitrary code before creating the account. before_create_account_route :: Run arbitrary code before handling a create account route. create_account_autologin? :: Whether to autologin the user upon successful account creation, true by default unless verifying accounts. create_account_link_text :: The text to use for a link to the create account form. create_account_response :: Return a response after successful account creation. By default, redirects to +create_account_redirect+. create_account_view :: The HTML to use for the create account form. new_account(login) :: Instantiate a new account hash for the given login, without saving it. save_account :: Insert the account into the database, or return nil/false if that was not successful. set_new_account_password :: Set the password for a new account if +account_password_hash_column+ is set, without saving.
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
rodauth-2.36.0 | doc/create_account.rdoc |
rodauth-2.34.0 | doc/create_account.rdoc |
rodauth-2.33.0 | doc/create_account.rdoc |
rodauth-2.32.0 | doc/create_account.rdoc |