2006-02-04 18:09:26 -05:00
|
|
|
class << Object; alias_method :const_available?, :const_defined?; end
|
2009-08-26 00:34:48 -04:00
|
|
|
|
2009-10-04 00:03:08 -04:00
|
|
|
class ContentController < ActionController::Base; end
|
|
|
|
|
2006-02-04 18:09:26 -05:00
|
|
|
module Admin
|
|
|
|
class << self; alias_method :const_available?, :const_defined?; end
|
2009-12-01 23:22:48 -05:00
|
|
|
class AccountsController < ActionController::Base; end
|
2009-08-26 00:34:48 -04:00
|
|
|
class NewsFeedController < ActionController::Base; end
|
2009-10-20 10:52:59 -04:00
|
|
|
class PostsController < ActionController::Base; end
|
2009-10-10 20:53:40 -04:00
|
|
|
class StuffController < ActionController::Base; end
|
2009-10-20 10:52:59 -04:00
|
|
|
class UserController < ActionController::Base; end
|
2009-12-01 23:22:48 -05:00
|
|
|
class UsersController < ActionController::Base; end
|
2005-07-15 11:00:39 -04:00
|
|
|
end
|
2009-10-04 00:03:08 -04:00
|
|
|
|
|
|
|
module Api
|
2009-12-01 23:22:48 -05:00
|
|
|
class UsersController < ActionController::Base; end
|
2009-10-04 00:03:08 -04:00
|
|
|
class ProductsController < ActionController::Base; end
|
|
|
|
end
|
|
|
|
|
|
|
|
# TODO: Reduce the number of test controllers we use
|
2009-12-01 23:22:48 -05:00
|
|
|
class AccountController < ActionController::Base; end
|
2009-09-06 22:42:05 -04:00
|
|
|
class AddressesController < ActionController::Base; end
|
2009-12-01 23:22:48 -05:00
|
|
|
class ArchiveController < ActionController::Base; end
|
2009-10-04 00:03:08 -04:00
|
|
|
class ArticlesController < ActionController::Base; end
|
|
|
|
class BarController < ActionController::Base; end
|
2009-12-01 23:22:48 -05:00
|
|
|
class BlogController < ActionController::Base; end
|
2009-10-04 00:03:08 -04:00
|
|
|
class BooksController < ActionController::Base; end
|
|
|
|
class BraveController < ActionController::Base; end
|
2009-12-01 23:22:48 -05:00
|
|
|
class CarsController < ActionController::Base; end
|
|
|
|
class CcController < ActionController::Base; end
|
2009-09-07 00:02:55 -04:00
|
|
|
class CController < ActionController::Base; end
|
2009-10-04 00:03:08 -04:00
|
|
|
class ElsewhereController < ActionController::Base; end
|
|
|
|
class FooController < ActionController::Base; end
|
2009-12-01 23:22:48 -05:00
|
|
|
class GeocodeController < ActionController::Base; end
|
2009-09-07 00:02:55 -04:00
|
|
|
class HiController < ActionController::Base; end
|
|
|
|
class ImageController < ActionController::Base; end
|
2009-12-01 23:22:48 -05:00
|
|
|
class NewsController < ActionController::Base; end
|
2009-10-20 10:52:59 -04:00
|
|
|
class NotesController < ActionController::Base; end
|
2009-10-04 00:03:08 -04:00
|
|
|
class PeopleController < ActionController::Base; end
|
2009-10-20 10:52:59 -04:00
|
|
|
class PostsController < ActionController::Base; end
|
2009-10-04 00:03:08 -04:00
|
|
|
class SessionsController < ActionController::Base; end
|
2009-10-10 21:04:44 -04:00
|
|
|
class StuffController < ActionController::Base; end
|
2009-10-04 00:03:08 -04:00
|
|
|
class SubpathBooksController < ActionController::Base; end
|
2009-12-01 23:22:48 -05:00
|
|
|
class SymbolsController < ActionController::Base; end
|
|
|
|
class UserController < ActionController::Base; end
|
2009-09-13 18:28:44 -04:00
|
|
|
class WeblogController < ActionController::Base; end
|
2009-08-26 00:34:48 -04:00
|
|
|
|
2008-01-19 00:24:44 -05:00
|
|
|
# For speed test
|
|
|
|
class SpeedController < ActionController::Base; end
|
|
|
|
class SearchController < SpeedController; end
|
|
|
|
class VideosController < SpeedController; end
|
|
|
|
class VideoFileController < SpeedController; end
|
|
|
|
class VideoSharesController < SpeedController; end
|
|
|
|
class VideoAbusesController < SpeedController; end
|
|
|
|
class VideoUploadsController < SpeedController; end
|
|
|
|
class VideoVisitsController < SpeedController; end
|
|
|
|
class UsersController < SpeedController; end
|
|
|
|
class SettingsController < SpeedController; end
|
|
|
|
class ChannelsController < SpeedController; end
|
|
|
|
class ChannelVideosController < SpeedController; end
|
|
|
|
class LostPasswordsController < SpeedController; end
|
|
|
|
class PagesController < SpeedController; end
|