aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/version.rb')
-rw-r--r--app/models/version.rb23
1 files changed, 14 insertions, 9 deletions
diff --git a/app/models/version.rb b/app/models/version.rb
index 3515a0c..f598a44 100644
--- a/app/models/version.rb
+++ b/app/models/version.rb
@@ -172,15 +172,20 @@ class Version
if local_flags.include? flag
result[:local] << local_flag_map[flag].to_hsh
else
- useflag = UseflagRepository.find_by(:name, flag)
-
- # This should not happen, but let's be sure
- next unless useflag
-
- if useflag.scope == 'global'
- result[:global] << useflag.to_hsh
- elsif useflag.scope == 'use_expand'
- result[:use_expand] << useflag.to_hsh
+ # TODO(arzano) we might find a cleaner solution here
+ # e.g. search for all use flags with matching name
+ # that haven't scope=local
+ useflags = UseflagRepository.find_all_by(:name, flag)
+
+ for useflag in useflags do
+ # This should not happen, but let's be sure
+ next unless useflag
+
+ if useflag.scope == 'global'
+ result[:global] << useflag.to_hsh
+ elsif useflag.scope == 'use_expand'
+ result[:use_expand] << useflag.to_hsh
+ end
end
end
end