Skip to content
Snippets Groups Projects
Commit 9869c480 authored by Z.J. van de Weg's avatar Z.J. van de Weg
Browse files

Remove unneeded nil checks

The library we're using, default_value_for, is configured to interpret nil
as the default value, being ENABLED. Given the property can't be nil
this check is unneeded.
parent 6eeff67c
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -49,20 +49,14 @@ class ProjectFeature < ActiveRecord::Base
end
 
def builds_enabled?
return true unless builds_access_level
builds_access_level > DISABLED
end
 
def wiki_enabled?
return true unless wiki_access_level
wiki_access_level > DISABLED
end
 
def merge_requests_enabled?
return true unless merge_requests_access_level
merge_requests_access_level > DISABLED
end
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment