diff options
author | Stan Hu <stanhu@gmail.com> | 2015-06-19 21:18:24 -0700 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2015-06-19 21:23:46 -0700 |
commit | e785b9d2e24ca7e16e8ff3fa46f2e2b82478be9b (patch) | |
tree | 06f762b77dee4c8a05fecd4dd42d0b1dfefee5e5 /app/models/ability.rb | |
parent | 74a6732c0dfc1416cad382203544d9c4d6246f58 (diff) | |
download | gitlab-ce-e785b9d2e24ca7e16e8ff3fa46f2e2b82478be9b.tar.gz |
Fix Error 500 when one user attempts to access a personal, internal snippet
Closes #1815
Diffstat (limited to 'app/models/ability.rb')
-rw-r--r-- | app/models/ability.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/ability.rb b/app/models/ability.rb index bcd2adee00b..a5db22040e0 100644 --- a/app/models/ability.rb +++ b/app/models/ability.rb @@ -263,7 +263,7 @@ class Ability :"modify_#{name}", ] else - if subject.respond_to?(:project) + if subject.respond_to?(:project) && subject.project project_abilities(user, subject.project) else [] |