Welcome to mirror list, hosted at ThFree Co, Russian Federation.

revert_service.rb « commits « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dc27399e047aaec407b47117e54d288c1aea25a9 (plain)
1
2
3
4
5
6
7
module Commits
  class RevertService < ChangeService
    def create_commit!
      commit_change(:revert)
    end
  end
end