16 lines
195 B
Ruby
16 lines
195 B
Ruby
# -*- encoding : utf-8 -*-
|
|
class Admin::PagesController < ApplicationController
|
|
before_filter :authenticate_admin!
|
|
|
|
|
|
|
|
def edit
|
|
@page = Page.find(params[:id])
|
|
|
|
end
|
|
|
|
def update
|
|
end
|
|
|
|
end
|