Rails API versioning and forum_url

121 Views Asked by At

I try to add the location header to my versioned API.

NoMethodError (undefined method `forum_url' for #<V1::ForumsController:0x00000004fabaa0>):app/controllers/v1/forums_controller.rb:24:in `create'

How can I override the render location: forum helper to use v1_forum_urlinstead of forum_url?

1

There are 1 best solutions below

0
On BEST ANSWER

You could simply define a method forum_url in your controller:

def forum_url
  v1_forum_url
end

Or pass a custom method to location parameter.