I am trying to extend clearances controllers to pass through some other form elements
I have currently done the following but it doesn't appear to be working and is returning ActiveModel::ForbiddenAttributesError
class UsersController < Clearance::UsersController
private
def user_from_params
params.require(:user).permit(:first_name, :last_name, :mobile, :email, :password, :password_confirmation)
end
end