课程讨论区文件上传权限优化

This commit is contained in:
nwb 2014-06-20 09:08:18 +08:00
parent 0736dd1254
commit 6039cf63af
2 changed files with 9 additions and 0 deletions

View File

@ -818,6 +818,9 @@ class User < Principal
# authorize if user has at least one role that has this permission
roles = memberships.collect {|m| m.roles}.flatten.uniq
if roles.count == 0
roles = coursememberships.collect {|m| m.roles}.flatten.uniq
end
roles << (self.logged? ? Role.non_member : Role.anonymous)
roles.any? {|role|
role.allowed_to?(action) &&

View File

@ -691,6 +691,12 @@ ul.tool li{list-style-type:none;
word-break: break-all;
}
ul.user_course_sort{margin:0px; padding-left:0em;}
ul.user_course_sort li{list-style-type:none;
height:auto;}
.info-break{
word-wrap: break-word;
word-break: break-all;