6 lines
147 B
Ruby
6 lines
147 B
Ruby
class Admin::LogsController < ApplicationController
|
|
layout "admin"
|
|
before_filter :authenticate_user!
|
|
before_filter :authenticate_admin!
|
|
end
|
|
|