2014-09-02 18:07:02 +05:30
|
|
|
require_relative "base_service"
|
|
|
|
|
|
|
|
module Files
|
2015-09-25 12:07:36 +05:30
|
|
|
class DeleteService < Files::BaseService
|
|
|
|
def commit
|
|
|
|
repository.remove_file(current_user, @file_path, @commit_message, @target_branch)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|