19 lines
282 B
Ruby
19 lines
282 B
Ruby
# -*- encoding : utf-8 -*-
|
|
class Public::MOdrsController < ApplicationController
|
|
|
|
layout "public"
|
|
|
|
|
|
def show
|
|
@m_odr = MOdr.where(:slug => params[:slug]).first
|
|
|
|
end
|
|
|
|
def validation_ba
|
|
@m_odr = MOdr.where(:slug => params[:slug]).first
|
|
|
|
|
|
end
|
|
|
|
end
|