11 lines
139 B
Ruby
11 lines
139 B
Ruby
class RateCachesController < ApplicationController
|
|
unloadable
|
|
|
|
layout 'admin'
|
|
|
|
before_filter :require_admin
|
|
|
|
def index
|
|
end
|
|
end
|