Rename Team class to ProjectTeam

This commit is contained in:
Andrey Kumanyaev 2013-01-19 22:52:55 +04:00 committed by Dmitriy Zaporozhets
parent c5f427b0a4
commit 6d1c566ec9
2 changed files with 2 additions and 2 deletions

View file

@ -127,7 +127,7 @@ class Project < ActiveRecord::Base
end
def team
@team ||= Team.new(self)
@team ||= ProjectTeam.new(self)
end
def repository

View file

@ -1,4 +1,4 @@
class Team
class ProjectTeam
attr_accessor :project
def initialize(project)