Skip to content

Commit 1027e78

Browse files
author
root
committed
Indent
1 parent f787a7f commit 1027e78

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Diff for: lib/redmine_git_hosting/patches/users_controller_patch.rb

+5
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ module InstanceMethods
2525
def edit_with_git_hosting(&block)
2626
# Set public key values for view
2727
set_public_key_values
28+
2829
# Previous routine
2930
edit_without_git_hosting(&block)
3031
end
@@ -33,8 +34,10 @@ def edit_with_git_hosting(&block)
3334
def update_with_git_hosting(&block)
3435
# Set public key values for view
3536
set_public_key_values
37+
3638
# Previous routine
3739
update_without_git_hosting(&block)
40+
3841
# Update projects if needed
3942
update_projects
4043
end
@@ -43,8 +46,10 @@ def update_with_git_hosting(&block)
4346
def destroy_with_git_hosting(&block)
4447
# Build SSH keys list before user destruction.
4548
ssh_keys_list = ssh_keys_to_destroy
49+
4650
# Destroy user
4751
destroy_without_git_hosting(&block)
52+
4853
# Destroy SSH keys
4954
destroy_ssh_keys(ssh_keys_list)
5055
end

0 commit comments

Comments
 (0)