16 lines
199 B
Ruby
16 lines
199 B
Ruby
# -*- encoding : utf-8 -*-
|
|
class Admin::MenuAliasesController < ApplicationController
|
|
|
|
before_filter :authenticate_admin!
|
|
#load_and_authorize_resource
|
|
|
|
|
|
def edit
|
|
|
|
end
|
|
|
|
def update
|
|
end
|
|
|
|
end
|