summaryrefslogtreecommitdiff
path: root/lib/api/entities.rb
diff options
context:
space:
mode:
authorPatricio Cano <suprnova32@gmail.com>2016-08-30 17:17:45 -0500
committerPatricio Cano <suprnova32@gmail.com>2016-08-30 17:17:45 -0500
commitcf37d623e197dae5cc7efb021c1b1d85ca9674ee (patch)
treee785be171d2400ef751426cc79757cca320f856b /lib/api/entities.rb
parent63a97c11928d483cfad87d11f83c7df84c29743d (diff)
downloadgitlab-ce-project-specific-lfs.tar.gz
Renamed `enable_lfs` to `lfs_enabled` for the Project field, and related fixes.project-specific-lfs
Diffstat (limited to 'lib/api/entities.rb')
-rw-r--r--lib/api/entities.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api/entities.rb b/lib/api/entities.rb
index 61fcccf2959..4335e3055ef 100644
--- a/lib/api/entities.rb
+++ b/lib/api/entities.rb
@@ -78,7 +78,7 @@ module API
expose :path, :path_with_namespace
expose :issues_enabled, :merge_requests_enabled, :wiki_enabled, :builds_enabled, :snippets_enabled, :container_registry_enabled
expose :created_at, :last_activity_at
- expose :shared_runners_enabled, :enable_lfs
+ expose :shared_runners_enabled, :lfs_enabled
expose :creator_id
expose :namespace
expose :forked_from_project, using: Entities::BasicProjectDetails, if: lambda{ |project, options| project.forked? }