15 lines
196 B
Ruby
15 lines
196 B
Ruby
# -*- encoding : utf-8 -*-
|
|
class Admin::MenuUrlsController < ApplicationController
|
|
before_filter :authenticate_admin!
|
|
#load_and_authorize_resource
|
|
|
|
def edit
|
|
|
|
|
|
end
|
|
|
|
def update
|
|
end
|
|
|
|
end
|