More EE->CE fixes

This commit is contained in:
Jan Provaznik 2018-06-29 16:08:18 +02:00 committed by Jarka Kadlecová
parent ef0df760fc
commit 50c1a989cc
5 changed files with 3 additions and 6 deletions

View File

@ -1,5 +1,4 @@
module TodosActions
include Gitlab::Utils::StrongMemoize
extend ActiveSupport::Concern
def create

View File

@ -1,4 +1,5 @@
class Projects::TodosController < Projects::ApplicationController
include Gitlab::Utils::StrongMemoize
include TodosActions
before_action :authenticate_user!, only: [:create]

View File

@ -169,9 +169,7 @@ module TodosHelper
end
def todo_group_options
groups = current_user.authorized_groups
groups = groups.map do |group|
groups = current_user.authorized_groups.map do |group|
{ id: group.id, text: group.full_name }
end

View File

@ -83,7 +83,7 @@ class Todo < ActiveRecord::Base
end
def parent
project || group
project
end
def unmergeable?

View File

@ -285,7 +285,6 @@ class TodoService
def attributes_for_target(target)
attributes = {
project_id: target&.project&.id,
group_id: target.respond_to?(:group) ? target.group_id : nil,
target_id: target.id,
target_type: target.class.name,
commit_id: nil