6 lines
149 B
Ruby
6 lines
149 B
Ruby
|
# -*- encoding : utf-8 -*-
|
||
|
class Admin::BaseController < ApplicationController
|
||
|
before_filter :authenticate_user!
|
||
|
load_and_authorize_resource
|
||
|
end
|