15,012 questions
0
votes
0
answers
39
views
non-standard way of logging in user with devise (including confirmable)
An application has the motive to register a user via a distinct process that diverges from the one defined by default by devise (invoking the registrations_controller).
The process would be to
create ...
0
votes
1
answer
32
views
Redirect takes desktop viewport after successful google oauth login
I am using Devise for google oauth. When I sign in via mobile on web browser, after successful authentication I get redirected with desktop view.
class Reactors::OmniauthCallbacksController < ...
-1
votes
1
answer
122
views
Recaptcha "ERROR for site owner: Invalid key type"
I am trying to put Google recaptcha on the "password forgotten" screen users/password/new. I set up the keys on my development, staging and production machines in a .env file as per ...
1
vote
1
answer
72
views
devise and language by multiple domain
I'm trying to use multi language by domain, for example I have domain.fi.local for language Finnish and domain.es.local for language Spanish and on every of them you can switch to English and I have ...
0
votes
1
answer
41
views
Devise send_reset_password_instructions invalid token in Active Admin Rails
I have this problem in ActiveAdmin. When I try to reset a user's password with devise send_reset_password_instructions.
member_action :reset_password, method: :get do
resource....
0
votes
1
answer
20
views
Cucumber Devise login via remote Selenium chromium not working
Context: I set up a new system using rails-new into a devcontainer. So the dev environment is running inside docker. I'm using a dockerised Selenium Chromium to run my tests. I'm using Devise for ...
0
votes
0
answers
67
views
Using omniauth for SSO and offline_access with Devise in Rails 8
I have a Rails 8 application where I'm currently using Omniauth + Devise to handle SSO with Microsoft.
I also want to allow a logged-in user to perform a separate authorization of a Microsoft app ...
1
vote
0
answers
87
views
Rails 7 with Device Token Auth (1.2.5) Returns Completed 401 Unauthorized after Successfully Login
I'm currently using Rails 7 and devise_token_auth (1.2.5). We use all the default settings from devise_token_auth and it's been working perfectly.
Here is our session controller code:
class Api::V1::...
0
votes
0
answers
60
views
(Rails, devise) Session not persisting in Firefox ONLY?
So I have a truly bizarre problem and I appreciate any help with it.
I have a Rails app (7.0.8.4) that uses devise (4.9.3) to manage session handling. Typically, when a new account is created, the ...
0
votes
0
answers
74
views
Adding custom parameters to devise registration - Insert is not complete
I'm trying to add some customs parameters to a devise class. I configured registrations_controller with the method:
def configure_sign_up_params
devise_parameter_sanitizer.permit(:sign_up, keys: ...
1
vote
0
answers
31
views
Devise gem error in test environment: serialize_from_session gives error "wrong number of arguments (given 10, expected 2)"
I just updated my app to rails 8 with the newest version of Devise and hotwire turbo. When running tests with Capybara/Rspec I'm seeing certain form submissions fail with a 500 error from inside of ...
-3
votes
1
answer
120
views
Rails Devise Strong Parameters not building Nested Association
I did generated devise controllers and views and defined both User and Account models like the following:
User
class User < ApplicationRecord
# Include default devise modules. Others available ...
1
vote
1
answer
96
views
run time error while running tests in rails
versions:
> ruby -v
ruby 3.3.6 (2024-11-05 revision 75015d4c1f) [arm64-darwin24]
> rails -v
Rails 8.0.0.1
user.rb model:
class User < ApplicationRecord
devise :database_authenticatable, :...
0
votes
0
answers
40
views
RSpec: login_as not working after switching to shallow nesting
I'm switching to shallow nesting of Assets (belonging to Entity), and I'm rewriting request specs.
For the new shallow routes (e.g. '/assets/1', which was '/entities/1/assets/1'), login_as fails. It ...
0
votes
0
answers
54
views
Rspec request test with omniauth doesn't call destroy method when sign out is called
I have a rails 6.1.7 project with omniauth + devise and a custom openid connect server that I'm connecting to.
I'm trying to write a rspec request test for the log out feature with some logic in the ...