c0771fe7d8
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1837 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
24 lines
471 B
Ruby
24 lines
471 B
Ruby
module Object::Controllers
|
|
def self.const_available?(*args)
|
|
const_defined?(*args)
|
|
end
|
|
|
|
class ContentController < ActionController::Base
|
|
end
|
|
|
|
module Admin
|
|
def self.const_available?(*args)
|
|
const_defined?(*args)
|
|
end
|
|
|
|
class UserController < ActionController::Base
|
|
end
|
|
class NewsFeedController < ActionController::Base
|
|
end
|
|
end
|
|
end
|
|
|
|
ActionController::Routing::Routes.draw do |map|
|
|
map.connect ':controller/:action/:id'
|
|
end
|