Vincent Simon

Results 6 comments of Vincent Simon
trafficstars

> Hey Vincent! > > We are currently facing the same issue! > > Did you get it patched? > > All of our new data is "application/json" > >...

yes ```ruby class User < ApplicationRecord # Include default devise modules. Others available are: # :confirmable, :lockable, :timeoutable and :omniauthable devise :database_authenticatable, :saml_authenticatable, :registerable, :recoverable, :rememberable, :trackable, :validatable # ........

How it is possible to generate a password for each sign up with saml_auth ? I don't understand the flow to create a user.

I have still this error :( ``` AbstractController::ActionNotFound (The action 'create' could not be found for Devise::SamlSessionsController): ```

@adamstegman yes I have override devise controller like this. ```ruby class User::RegistrationsController < Devise::RegistrationsController # before_action :configure_sign_up_params, only: [:create] # before_action :configure_account_update_params, only: [:update] # GET /resource/sign_up def new @list_email...

and my routes.rb is ```ruby devise_for :users, skip: :saml_authenticatable, controllers: { registrations: "user/registrations", sessions: "user/sessions" } as :user do get 'experts/sign_up', to: 'user/registrations#new_expert' end ```