Rename Team class to ProjectTeam
This commit is contained in:
parent
c5f427b0a4
commit
6d1c566ec9
2 changed files with 2 additions and 2 deletions
|
@ -127,7 +127,7 @@ class Project < ActiveRecord::Base
|
|||
end
|
||||
|
||||
def team
|
||||
@team ||= Team.new(self)
|
||||
@team ||= ProjectTeam.new(self)
|
||||
end
|
||||
|
||||
def repository
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
class Team
|
||||
class ProjectTeam
|
||||
attr_accessor :project
|
||||
|
||||
def initialize(project)
|
Loading…
Reference in a new issue