Commit 59f75e6c authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Remove unused accessor

parent 0bc714c2
...@@ -92,7 +92,6 @@ class ProjectTeam ...@@ -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 ...@@ -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 ...@@ -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 ...@@ -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 ...@@ -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
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment