Sergio Cambra
Sergio Cambra
I have same issue, when I click on Open Extension Settings, it open options in incognito window, and gets this error, if I copy URL into normal window, it works
You are sending form with PUT, which is update action (accept invitation) instead of create action (invite). Did you change invite view?
Probably. form_for uses :put if @plan is persisted, :post in other case, I guess simple_form_for does it in same way
It's not a routes issue. This is request: Started PUT "/users/invitation" for 127.0.0.1 at 2014-08-12 16:25:37 +0200 Processing by Users::InvitationsController#update as HTML It's a request to update action, because HTTP...
Can you remove backtrace silencers, please? I can't see where is calling empty? on User record. The only lines calling a method empty? are `invitable.errors.empty?` or `resource.errors.empty?`
I have tested in new app, and I can't reproduce it DeviseInvitable uses Devise.token_generator.generate and Devise.token_generator.digest, as devise does in recoverable module. Can you try with a user and code...
You can push a pull request improving README, it would only happen if email is read from rails console or rails log, if you receive email, email reader will display...
I would need more info about what fields User and SubUser have, and how relationships are built. When [email protected] accepts invitation, does it create a User or SubUser? where is...
Why you edited the issue and remove all the code? It was useful to help you debugging where can be the issue. Anyway, you could override invite_params method in your...
You may have issues with devise parameter sanitizer so you may need to define your own invite_params method. Check this: https://stackoverflow.com/questions/42383243/setting-up-an-api-using-devise-for-authentication I haven't digged deep enough, but sanitizer may work...