admin可以访问作品列表

This commit is contained in:
sw 2015-06-25 14:56:53 +08:00
parent 088854f7df
commit 7efe628e73
1 changed files with 1 additions and 1 deletions

View File

@ -284,7 +284,7 @@ class StudentWorkController < ApplicationController
#是不是当前课程的成员
#当前课程成员才可以看到作品列表
def member_of_course
render_403 unless User.current.member_of_course? @course || User.current.admin?
render_403 unless User.current.member_of_course?(@course) || User.current.admin?
end
#判断是不是当前作品的提交者