Support nested controllers in modules
Reported by Matt Todd | September 19th, 2008 @ 01:10 AM | in Release 0.5.4
Controllers should be able to be nested in module:
module Foo
class Bar < Application
def index
ok
end
end
end
Currently it causes a 404 because it can't find the class and it throws an exception.
Comments and changes to this ticket
-
Matt Todd September 19th, 2008 @ 01:11 AM
- State changed from new to resolved
(from [6ab98d687d760e932b2063a2579292066c0b64c5]) Fixed the spec to actually define a controller (inherits from Controller) so the test can legitimately fail. Made the dispatcher search full constant strings (like Foo::Bar) using the Extlib functionality. [#63 state:resolved] http://github.com/mtodd/halcyon/...
Please Sign in or create a free account to add a new ticket.
With your very own profile, you can contribute to projects, track your activity, watch tickets, receive and update tickets through your email and much more.
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile ยป
People watching this ticket
Tags
Referenced by
- 63 Support nested controllers in modules (from [6ab98d687d760e932b2063a2579292066c0b64c5]) Fixed t...