У меня есть это:
application_controller.rb
class ApplicationController < ActionController::Base
end
decidim_controller.rb
# Entry point for Decidim. It will use the `DecidimController` as
# entry point, but you can change what controller it inherits from
# so you can customize some methods.
class DecidimController < ApplicationController
end
и этот account_activation_controller.rb
class AccountActivationsController < ApplicationController
end
Как я могу найти функцию, которая создает пользователя, потому что мне нужно изменить ее, не так ли?
Спасибо за ответ.