2015-09-17 01:45:22 -04:00
|
|
|
module Files
|
|
|
|
class CreateDirService < Files::BaseService
|
2017-04-19 20:37:44 -04:00
|
|
|
def create_commit!
|
2017-02-15 18:28:29 -05:00
|
|
|
repository.create_dir(
|
2016-11-14 15:02:10 -05:00
|
|
|
current_user,
|
|
|
|
@file_path,
|
2016-12-08 04:08:25 -05:00
|
|
|
message: @commit_message,
|
2017-04-19 20:37:44 -04:00
|
|
|
branch_name: @branch_name,
|
2016-11-14 15:02:10 -05:00
|
|
|
author_email: @author_email,
|
|
|
|
author_name: @author_name,
|
2017-01-06 10:29:13 -05:00
|
|
|
start_project: @start_project,
|
|
|
|
start_branch_name: @start_branch)
|
2015-09-17 01:45:22 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|