Commit e6c939f2 authored by Stan Hu's avatar Stan Hu

Merge branch 'ph/enableLfsBadgeByDefault' into 'master'

Enable Vue LFS badge by default

See merge request gitlab-org/gitlab!30469
parents 29530857 a94cc688
...@@ -12,7 +12,7 @@ class Projects::RefsController < Projects::ApplicationController ...@@ -12,7 +12,7 @@ class Projects::RefsController < Projects::ApplicationController
before_action :authorize_download_code! before_action :authorize_download_code!
before_action only: [:logs_tree] do before_action only: [:logs_tree] do
push_frontend_feature_flag(:vue_file_list_lfs_badge) push_frontend_feature_flag(:vue_file_list_lfs_badge, default_enabled: true)
end end
def switch def switch
......
...@@ -16,7 +16,7 @@ class Projects::TreeController < Projects::ApplicationController ...@@ -16,7 +16,7 @@ class Projects::TreeController < Projects::ApplicationController
before_action :authorize_edit_tree!, only: [:create_dir] before_action :authorize_edit_tree!, only: [:create_dir]
before_action only: [:show] do before_action only: [:show] do
push_frontend_feature_flag(:vue_file_list_lfs_badge) push_frontend_feature_flag(:vue_file_list_lfs_badge, default_enabled: true)
end end
def show def show
......
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