Commit d4941c87 authored by Phil Hughes's avatar Phil Hughes

Enable Vue file listing flag by default

parent 8cdfa402
......@@ -32,7 +32,7 @@ class Projects::TreeController < Projects::ApplicationController
respond_to do |format|
format.html do
lfs_blob_ids if Feature.disabled?(:vue_file_list, @project)
lfs_blob_ids if Feature.disabled?(:vue_file_list, @project, default_enabled: true)
@last_commit = @repository.last_commit_for_path(@commit.id, @tree.path) || @commit
end
......
......@@ -296,7 +296,7 @@ class ProjectsController < Projects::ApplicationController
private
def show_blob_ids?
repo_exists? && project_view_files? && Feature.disabled?(:vue_file_list, @project)
repo_exists? && project_view_files? && Feature.disabled?(:vue_file_list, @project, default_enabled: true)
end
# Render project landing depending of which features are available
......
......@@ -703,7 +703,7 @@ module ProjectsHelper
end
def vue_file_list_enabled?
Feature.enabled?(:vue_file_list, @project)
Feature.enabled?(:vue_file_list, @project, default_enabled: true)
end
def show_visibility_confirm_modal?(project)
......
---
title: Refactored repository browser to use Vue and GraphQL
merge_request: 24450
author:
type: performance
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment