Like this?
```
mount StripeEvent::Engine, at: '/stripe/event'
# post '/stripe/event', to: 'webhooks#event'
devise_for :users
resources :subscriptions, only: [:new, :create] do
scope module: 'subscriptions' do
collection do
resource :unsubscribe, only: :destroy
resource :resubscribe, only: :new
end
end
end
```
Alright, update.
It's working now.
I think what was the matter was that it didn't have to load the stripe results for the first time or something!
Sorta odd I know. But at least people in the future will know that a way to troubleshoot this issue is to wait it out and come back later.
Also try to delete all charges then create a new charge.
I have been trying to get this to work for little bit now and I'm wondering if it's because i'm using form_with. Do you know how to work around this?
This is what I have:
```
```