我只是想在用户注册时创建另一条记录。我认为以下是 Clearance 触及我的应用程序的唯一地方,不计算视图。
class ApplicationController < ActionController::Base
include Clearance::Controller
before_action :require_login
.
.
.
end
class User < ActiveRecord::Base
include Clearance::User
has_many :received_messages, class_name: 'Message', foreign_key: :receiver_id
has_one :privilege
end