|
|
|
@ -1215,7 +1215,7 @@ class ShixunsController < ApplicationController
|
|
|
|
|
# Find shixun of id params[:id]
|
|
|
|
|
def find_shixun
|
|
|
|
|
@shixun = Shixun.find_by_identifier(params[:id])
|
|
|
|
|
render_404 if @shixun.nil?
|
|
|
|
|
render_404 if @shixun.nil? || @shixun.status == -1
|
|
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
|
render_404
|
|
|
|
|
end
|
|
|
|
@ -1362,4 +1362,8 @@ class ShixunsController < ApplicationController
|
|
|
|
|
def validation_email
|
|
|
|
|
render_403 if User.current.mail.blank?
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def validate_shixun
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|