From ef164e0abcf91e91ad0ab91c0a209ad4552335cf Mon Sep 17 00:00:00 2001 From: cxt <853663049@qq.com> Date: Tue, 23 Jul 2019 11:48:06 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AF=BE=E5=A0=82=E6=B2=A1=E6=9D=83=E9=99=90?= =?UTF-8?q?=E6=8A=A5409?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controllers/application_controller.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index b0183574d..81e9402b9 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -34,10 +34,11 @@ class ApplicationController < ActionController::Base User.current.admin? || User.current.business? end + # 访问课堂时没权限直接弹加入课堂的弹框 :409 def user_course_identity @user_course_identity = current_user.course_identity(@course) if @user_course_identity > Course::STUDENT && @course.is_public == 0 - tip_exception(403, "您没有权限进入") + tip_exception(409, "您没有权限进入") end uid_logger("###############user_course_identity:#{@user_course_identity}") end