Adam ⚛ Stegman

Results 73 comments of Adam ⚛ Stegman
trafficstars

I'm not familiar with terraform plugins, but looking at https://github.com/franckverrot/terraform-provider-stripe/blob/25ead0465e52a4fe0411a1d3908cdffc7167689b/vendor/github.com/hashicorp/terraform/helper/schema/resource_data.go#L102 it seems like `GetOk` incorrectly returns a non-existent value in this case. Maybe `GetOkExists` should be used instead, since it...

@franckverrot what do you think of this fix?

@maths22 did #55 solve your issue? I ask because a couple folks on our team are still running into this error, even on v0.2.2. ``` Updating the .../Gemfile_next.lock Fetching gem...

I'm not sure you need to go to all the trouble in that post—it sets up a special type of user/authentication for ActiveAdmin instead of using role-based access, which might...

We don't have a separate admin user, so these routes are not really an issue for us. We use the same user authentication for normal access as for ActiveAdmin access....

> Is there a way to modify this behavior and redirect Devise::SamlSessionsController#create somewhere else? Great question; I'm not really sure. I've definitely seen this behavior before when debugging my SAML...

> What I'd like to happen is just redirect the user to a custom controller that can show them an error if they aren't present in my users table. That...

Can you provide some example code illustrating the issue? I don't know what redirect URL is changing.

Great find, that empty value looks incorrect. Is there a URL that Google gives you for this setting you can use?

Yes, you can override `after_sign_out_path_for` in the controller to send them somewhere else, like back to Google or to an unauthenticated page in your site. In an initializer, try adding:...