Remove unused accessor
This commit is contained in:
parent
0bc714c271
commit
59f75e6c1e
2 changed files with 0 additions and 9 deletions
|
@ -92,7 +92,6 @@ class ProjectTeam
|
||||||
new_tm = tm.dup
|
new_tm = tm.dup
|
||||||
new_tm.id = nil
|
new_tm.id = nil
|
||||||
new_tm.project_id = target_project.id
|
new_tm.project_id = target_project.id
|
||||||
new_tm.skip_git = true
|
|
||||||
new_tm
|
new_tm
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -25,8 +25,6 @@ class UsersProject < ActiveRecord::Base
|
||||||
belongs_to :user
|
belongs_to :user
|
||||||
belongs_to :project
|
belongs_to :project
|
||||||
|
|
||||||
attr_accessor :skip_git
|
|
||||||
|
|
||||||
validates :user, presence: true
|
validates :user, presence: true
|
||||||
validates :user_id, uniqueness: { scope: [:project_id], message: "already exists in project" }
|
validates :user_id, uniqueness: { scope: [:project_id], message: "already exists in project" }
|
||||||
validates :project_access, inclusion: { in: [GUEST, REPORTER, DEVELOPER, MASTER] }, presence: true
|
validates :project_access, inclusion: { in: [GUEST, REPORTER, DEVELOPER, MASTER] }, presence: true
|
||||||
|
@ -77,7 +75,6 @@ class UsersProject < ActiveRecord::Base
|
||||||
user_ids.each do |user_id|
|
user_ids.each do |user_id|
|
||||||
users_project = UsersProject.new(project_access: project_access, user_id: user_id)
|
users_project = UsersProject.new(project_access: project_access, user_id: user_id)
|
||||||
users_project.project_id = project_id
|
users_project.project_id = project_id
|
||||||
users_project.skip_git = true
|
|
||||||
users_project.save
|
users_project.save
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -92,7 +89,6 @@ class UsersProject < ActiveRecord::Base
|
||||||
UsersProject.transaction do
|
UsersProject.transaction do
|
||||||
users_projects = UsersProject.where(project_id: project_ids)
|
users_projects = UsersProject.where(project_id: project_ids)
|
||||||
users_projects.each do |users_project|
|
users_projects.each do |users_project|
|
||||||
users_project.skip_git = true
|
|
||||||
users_project.destroy
|
users_project.destroy
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -130,8 +126,4 @@ class UsersProject < ActiveRecord::Base
|
||||||
end
|
end
|
||||||
|
|
||||||
alias_method :human_access, :project_access_human
|
alias_method :human_access, :project_access_human
|
||||||
|
|
||||||
def skip_git?
|
|
||||||
!!@skip_git
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue