mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-29 06:26:07 +10:00
Add files encoding support on context level
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
This commit is contained in:
@@ -33,7 +33,8 @@ module Files
|
||||
new_file_action = Gitlab::Satellite::NewFileAction.new(current_user, project, ref, file_path)
|
||||
created_successfully = new_file_action.commit!(
|
||||
params[:content],
|
||||
params[:commit_message]
|
||||
params[:commit_message],
|
||||
params[:encoding]
|
||||
)
|
||||
|
||||
if created_successfully
|
||||
|
||||
@@ -23,10 +23,11 @@ module Files
|
||||
return error("You can only edit text files")
|
||||
end
|
||||
|
||||
new_file_action = Gitlab::Satellite::EditFileAction.new(current_user, project, ref, path)
|
||||
created_successfully = new_file_action.commit!(
|
||||
edit_file_action = Gitlab::Satellite::EditFileAction.new(current_user, project, ref, path)
|
||||
created_successfully = edit_file_action.commit!(
|
||||
params[:content],
|
||||
params[:commit_message]
|
||||
params[:commit_message],
|
||||
params[:encooding]
|
||||
)
|
||||
|
||||
if created_successfully
|
||||
|
||||
Reference in New Issue
Block a user