mirror of
https://github.com/meineerde/redmine.git
synced 2026-01-02 05:39:40 +00:00
Patch by Takashi Kato. git-svn-id: https://svn.redmine.org/redmine/trunk@22473 e93f8b46-1217-0410-a6f0-8f06a7374b81
8 lines
141 B
Ruby
8 lines
141 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ApplicationJob < ActiveJob::Base
|
|
include Redmine::JobWrapper
|
|
|
|
around_enqueue :keep_current_user
|
|
end
|