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