file_action.rb 284 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 module Gitlab module Satellite class FileAction < Action attr_accessor :file_path, :ref def initialize(user, project, ref, file_path) super user, project, git_timeout: 10.seconds @file_path = file_path @ref = ref end end end end