Class: Users::RegistrationsController
- Inherits:
-
Devise::RegistrationsController
- Object
- Devise::RegistrationsController
- Users::RegistrationsController
- Defined in:
- app/controllers/users/registrations_controller.rb
Overview
Lesli
Copyright © 2025, Lesli Technologies, S. A.
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see www.gnu.org/licenses/.
Lesli · Ruby on Rails SaaS Development Framework.
Made with ♥ by LesliTech Building a better future, one line of code at a time.
// · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ // ·
Instance Method Summary collapse
-
#create ⇒ Object
GET /resource/sign_up def new super end.
Instance Method Details
#create ⇒ Object
GET /resource/sign_up def new
super
end
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
# File 'app/controllers/users/registrations_controller.rb', line 44 def create begin # Check if instance allow multi-account if !Lesli.config.security.dig(:allow_registration) raise(I18n.t("core.users/registrations.messages_error_registration_not_allowed")) end # build new user user = build_resource(sign_up_params) # run password complexity validations #user_validator = UsersValidator.new(user).password_complexity(sign_up_params[:password]) # return if there are errors with the complexity validations # unless user_validator.valid? # return respond_with_error("password_complexity_error", password_complexity.failures) # end # persist new user if user.save success("Account created, check your email") else raise(user.errors..to_sentence) end rescue => exception #Honeybadger.notify(exception) danger(exception.) end redirect_to(new_user_registration_path) end |