summaryrefslogtreecommitdiff
path: root/lib/gitlab/import_export/import_service.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/import_export/import_service.rb')
-rw-r--r--lib/gitlab/import_export/import_service.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/gitlab/import_export/import_service.rb b/lib/gitlab/import_export/import_service.rb
index db71f72efec..95d4fb17ead 100644
--- a/lib/gitlab/import_export/import_service.rb
+++ b/lib/gitlab/import_export/import_service.rb
@@ -64,6 +64,18 @@ module Gitlab
def wiki_repo_path
File.join(@shared.export_path, 'project.wiki.bundle')
end
+
+ def attributes_for_todo
+ { user_id: @current_user.id,
+ project_id: project_tree.project.id,
+ target_type: 'Project',
+ target: project_tree.project,
+ action: Todo::IMPORTED,
+ author_id: @current_user.id,
+ state: :pending,
+ target_id: project_tree.project.id
+ }
+ end
end
end
end