ensl.org/app/controllers/custom_urls_controller.rb

17 lines
159 B
Ruby
Raw Normal View History

class CustomUrlsController < ApplicationController
2017-11-09 17:25:52 +00:00
def administrate
end
def create
end
def show
end
def update
end
def destroy
end
end