boissier_app/app/controllers/slides_controller.rb
Nicolas Bally 6abf7679fd initial
2011-05-14 13:36:30 +02:00

25 lines
214 B
Ruby

# -*- encoding : utf-8 -*-
class SlidesController < ApplicationController
def index
end
def new
end
def create
end
def edit
end
def update
end
def destroy
end
def reorder
end
end